mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Save log file and give better output of what is happening
This commit is contained in:
parent
6aa9ddce18
commit
60e014fe99
@ -1,11 +1,13 @@
|
||||
#!/bin/sh
|
||||
|
||||
echo "Checking..."
|
||||
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 /
|
||||
tar xzPfU $1 -C / 2>/var/etc/restore_log.txt
|
||||
echo "Restore of $1 complete."
|
||||
else
|
||||
echo "Could not locate backup ${1}. Available backups:"
|
||||
echo " Error."
|
||||
echo "File not found or invalid backup file. Available backups:"
|
||||
ls -lah /root | grep backup | more
|
||||
fi
|
||||
|
||||
Loading…
Reference in New Issue
Block a user