浏览代码

Update host-backup.sh

tweak
tteckster 1 年之前
父节点
当前提交
9d96fae50b
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      misc/host-backup.sh

+ 2 - 2
misc/host-backup.sh

@@ -37,12 +37,12 @@ while read -r dir; do
     MSG_MAX_LENGTH=$((${#DIRNAME} + $OFFSET))
   fi
   CTID_MENU+=("$DIRNAME" "$dir " "OFF")
-done < <(ls -d /etc/*/)
+done < <(ls -d /etc/*)
 
 while [ -z "${HOST_BACKUP:+x}" ]; do
   HOST_BACKUP=$(whiptail --title "Select Directories" --checklist \
     "\nSelect what directories to backup:\n" \
-    16 $(($MSG_MAX_LENGTH + 38)) 6 \
+    16 $(($MSG_MAX_LENGTH + 58)) 6 \
     "${CTID_MENU[@]}" 3>&1 1>&2 2>&3) || exit
 
   for selected_dir in ${HOST_BACKUP//\"}; do