From ea546e4943780afb75f2db2fb3dfff5fac52397a Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Thu, 20 May 2010 22:14:28 -0400 Subject: [PATCH] Minor fixes --- etc/rc.restore_full_backup | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/etc/rc.restore_full_backup b/etc/rc.restore_full_backup index e3b8f681d2..44b63d2927 100755 --- a/etc/rc.restore_full_backup +++ b/etc/rc.restore_full_backup @@ -2,11 +2,9 @@ if [ -f $1 ]; then echo "One moment please while we restore $1" - tar xzvPfU $1 -C / + tar xzPfU $1 -C / echo "Restore of $1 complete." else - echo "Could not locate $1" - echo - echo "Available backups:" - ls -lah /root | grep Backup + echo "Could not locate ${1}. Available backups:" + ls -lah /root | grep backup fi