blob: 895496daf9aaabd7210fe776d09a1d4a3f444ac9 [file] [log] [blame]
#!/sbin/sh
. /tmp/backuptool.functions
list_files() {
cat <<EOF
bin/su
etc/init/superuser.rc
xbin/su
EOF
}
case "$1" in
backup)
list_files | while read FILE DUMMY; do
backup_file $S/"$FILE"
done
;;
restore)
list_files | while read FILE REPLACEMENT; do
R=""
[ -n "$REPLACEMENT" ] && R="$S/$REPLACEMENT"
restore_file $S/"$FILE" "$R"
done
;;
pre-backup)
# Stub
;;
post-backup)
# Stub
;;
pre-restore)
# Stub
;;
post-restore)
# Stub
;;
esac