Some clean-up
[backups/.git] / scripts / rsync-cmd.sh
diff --git a/scripts/rsync-cmd.sh b/scripts/rsync-cmd.sh
deleted file mode 100755 (executable)
index b1ea6c9..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-# This file just has some ideas about how to do the rsync command with the list
-# of file produced by lsbackups
-
-[ $# == 1 ] || exit 1
-[ -d $1   ] || exit 1
-
-# -H ? -W ?
-rsync_opts='-l -p -t -g -o -0 --files-from=-'
-
-other_opts='--stats --progress'
-
-# Should also include directories in there
-rsync $rsync_opts $other_opts / $1