-
-
Save tzarskyz/7516020 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
PROG=$0 | |
RSYNC="/usr/bin/rsync" | |
SRC="/" | |
DST="/Volumes/Backup/" | |
# rsync options | |
# -v increase verbosity | |
# -a turns on archive mode (recursive copy + retain attributes) | |
# -x don't cross device boundaries (ignore mounted volumes) | |
# -E preserve executability | |
# -S handle spare files efficiently | |
# --delete delete deletes any files that have been deleted locally | |
# --exclude-from reference a list of files to exclude | |
if [ ! -r "$SRC" ]; then | |
/usr/bin/logger -t $PROG "Source $SRC not readable - Cannot start the sync process" | |
exit; | |
fi | |
if [ ! -w "$DST" ]; then | |
/usr/bin/logger -t $PROG "Destination $DST not writeable - Cannot start the sync process" | |
exit; | |
fi | |
/usr/bin/logger -t $PROG "Start rsync" | |
sudo $RSYNC -vaxE -S --delete --exclude-from=$HOME/rsync_excludes.txt "$SRC" "$DST" | |
/usr/bin/logger -t $PROG "End rsync" | |
# make the backup bootable | |
sudo bless -folder "$DST"/System/Library/CoreServices | |
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.Spotlight-*/ | |
.Trashes | |
/tmp/* | |
/Network/* | |
/cores/* | |
/afs/* | |
/automount/* | |
/private/tmp/* | |
/private/var/run/* | |
/private/var/spool/postfix/* | |
/private/var/vm/* | |
/Previous Systems.localized | |
/Volumes/* | |
*/.Trash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment