summaryrefslogtreecommitdiffstats
path: root/etc/rc.restore_full_backup
diff options
context:
space:
mode:
Diffstat (limited to 'etc/rc.restore_full_backup')
-rwxr-xr-xetc/rc.restore_full_backup13
1 files changed, 13 insertions, 0 deletions
diff --git a/etc/rc.restore_full_backup b/etc/rc.restore_full_backup
new file mode 100755
index 0000000..9e3d6ce
--- /dev/null
+++ b/etc/rc.restore_full_backup
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+echo -n "Checking..."
+if [ `tar tzPf $1 /etc/rc 2>/dev/null` ]; then
+ echo " Backup file looks OK."
+ echo "One moment, restoring ${1}..."
+ tar xzPfU $1 -C / 2>/var/etc/restore_log.txt
+ echo "Restore of $1 complete."
+else
+ echo " Error."
+ echo "File not found or invalid backup file. Available backups:"
+ ls -lah /root | grep backup | more
+fi
OpenPOWER on IntegriCloud