Re: [OT} Need advice on rsync backups

2003-02-17 Thread Dale Amon
On Mon, Feb 17, 2003 at 05:02:54PM +0100, Lars Ellenberg wrote: > suppose you have a file list like generated by find $BASEDIR -print > > pipe through > # include all files with necessary paths > sed -ne "s,^${BASEDIR//\\*/\\*}/,+ /,;"' > :l1;/+ ../{p;s,/$,,;s,[^/]*$,,;b l1;};' | > sort -u >

Re: [OT} Need advice on rsync backups

2003-02-17 Thread Lars Ellenberg
suppose you have a file list like generated by find $BASEDIR -print pipe through # include all files with necessary paths sed -ne "s,^${BASEDIR//\\*/\\*}/,+ /,;"' :l1;/+ ../{p;s,/$,,;s,[^/]*$,,;b l1;};' | sort -u > tmp.rsync # sort and remove duplicates # exclude evrything not explicitly i

Re: [OT} Need advice on rsync backups

2003-02-17 Thread Dale Amon
On Mon, Feb 17, 2003 at 05:02:54PM +0100, Lars Ellenberg wrote: > suppose you have a file list like generated by find $BASEDIR -print > > pipe through > # include all files with necessary paths > sed -ne "s,^${BASEDIR//\\*/\\*}/,+ /,;"' > :l1;/+ ../{p;s,/$,,;s,[^/]*$,,;b l1;};' | > sort -u >

Re: [OT} Need advice on rsync backups

2003-02-17 Thread Lars Ellenberg
suppose you have a file list like generated by find $BASEDIR -print pipe through # include all files with necessary paths sed -ne "s,^${BASEDIR//\\*/\\*}/,+ /,;"' :l1;/+ ../{p;s,/$,,;s,[^/]*$,,;b l1;};' | sort -u > tmp.rsync # sort and remove duplicates # exclude evrything not explicitly i

Re: [OT} Need advice on rsync backups

2003-02-16 Thread Ted Deppner
On Mon, Feb 17, 2003 at 03:00:30AM +, Dale Amon wrote: > This is not a security issue unless one considers backups a > security issue ;-) Everything is a security issue. The only variable is severity. > If someone could respond offline and give me some advice I'd > much appreciate it. The si

Re: [OT} Need advice on rsync backups

2003-02-16 Thread Ted Deppner
On Mon, Feb 17, 2003 at 03:00:30AM +, Dale Amon wrote: > This is not a security issue unless one considers backups a > security issue ;-) Everything is a security issue. The only variable is severity. > If someone could respond offline and give me some advice I'd > much appreciate it. The si

[OT} Need advice on rsync backups

2003-02-16 Thread Dale Amon
This is not a security issue unless one considers backups a security issue ;-) If someone could respond offline and give me some advice I'd much appreciate it. The situation is this: rsync -v --include-from /includes --exclude-from /excludes -n -avz [EMAIL PROTECTED]:/ /Backups/ where what I a

[OT} Need advice on rsync backups

2003-02-16 Thread Dale Amon
This is not a security issue unless one considers backups a security issue ;-) If someone could respond offline and give me some advice I'd much appreciate it. The situation is this: rsync -v --include-from /includes --exclude-from /excludes -n -avz root@server:/ /Backups/ where what I am tryi