From: intrigeri Date: Tue, 29 Nov 2005 10:07:38 +0000 (+0000) Subject: r3549@krups: intrigeri | 2005-11-14 21:47:01 +0100 X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fbackupninja.git;a=commitdiff_plain;h=ff949b583b865d4e39665a6af3ff521685f497ef r3549@krups: intrigeri | 2005-11-14 21:47:01 +0100 Fix documentation for get_next_filename function git-svn-id: http://code.autistici.org/svn/backupninja/trunk@233 758a04ac-41e6-0310-8a23-8373a73cc35d --- diff --git a/src/ninjahelper.in b/src/ninjahelper.in index 1045759..0f5af82 100755 --- a/src/ninjahelper.in +++ b/src/ninjahelper.in @@ -23,7 +23,7 @@ function check_perms() { ## ## returns the next available file name given a file ## in the form @CFGDIR@/backup.d/10.sys -## sets variable $returned_filename +## sets variable $next_filename ## get_next_filename() { next_filename=$1 @@ -41,7 +41,7 @@ get_next_filename() { ## installs packages (passed in as $@) if not present ## require_packages() { - for pkg in "$@"; do + for pkg in "$@"; do installed=`dpkg -s $pkg | grep 'ok installed'` if [ -z "$installed" ]; then booleanBox "install $pkg?" "This backup action requires package $pkg. Do you want to install it now?"