git-svn-id: http://code.autistici.org/svn/backupninja/trunk@504
758a04ac-41e6-0310-8a23-
8373a73cc35d
. Fixed shell command quoting issues, missing 'then' clauses, cleaned up
compress=yes to be less redundant and not create empty uncompressed
file (Closes: #394935)
. Fixed shell command quoting issues, missing 'then' clauses, cleaned up
compress=yes to be less redundant and not create empty uncompressed
file (Closes: #394935)
+ . Fixed ninjahelper to properly set compress option, standardized on yes/no
+ instead of on/off
maildir:
. Added an examples file (Closes: Trac#23)
mysql:
maildir:
. Added an examples file (Closes: Trac#23)
mysql:
ldap_create_file() {
while true; do
checkBox "ldap action wizard" "check options (slapcat OR ldapsearch)" \
ldap_create_file() {
while true; do
checkBox "ldap action wizard" "check options (slapcat OR ldapsearch)" \
- "slapcat" "export ldif using slapcat" on \
- "ldapsearch" "export ldif using ldapsearch" off \
- "compress" "compress the ldif output files" on
+ "slapcat" "export ldif using slapcat" yes \
+ "ldapsearch" "export ldif using ldapsearch" no \
+ "compress" "compress the ldif output files" yes
- compress="compress = off"
+ compress="compress = no"
method="method = <unset>"
restart="restart = no"
binddn=""
method="method = <unset>"
restart="restart = no"
binddn=""
result="$REPLY"
for opt in $result; do
case $opt in
result="$REPLY"
for opt in $result; do
case $opt in
- '"compress"') compress="compress = on";;
+ '"compress"') compress="compress = yes";;
'"slapcat"')
method="method = slapcat"
[ "$_RESTART" == "yes" ] && restart="restart = yes"
'"slapcat"')
method="method = slapcat"
[ "$_RESTART" == "yes" ] && restart="restart = yes"