From: Elijah Saxon Date: Fri, 15 Jul 2005 04:14:56 +0000 (+0000) Subject: (no commit message) X-Git-Tag: backupninja-0.7~7 X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fbackupninja.git;a=commitdiff_plain;h=581049b6b103ed64c7a7ccb7b364a9d9b1597495 --- diff --git a/ninjahelper b/ninjahelper index f487183..aedeaf5 100755 --- a/ninjahelper +++ b/ninjahelper @@ -145,6 +145,23 @@ doaction() { ##################################################### ## begin program +if [ ! -x "`which dialog`" ]; then + echo "ninjahelper is a menu based wizard for backupninja." + echo "It requires 'dialog' in order to run. Do you want to install dialog now?" + while true; do + echo -n "(yes/no): " + read install + if [ "$install" == "yes" ]; then + apt-get install dialog + break + elif [ "$install" == "no" ]; then + exit + else + echo "You must answer 'yes' or 'no'" + fi + done +fi + conffile="/etc/backupninja.conf" if [ ! -r "$conffile" ]; then echo "Configuration file $conffile not found."