From 91018e3c9b525908cc6b4252b0ef80422d16d523 Mon Sep 17 00:00:00 2001 From: advplyr Date: Tue, 14 Dec 2021 19:28:20 -0600 Subject: [PATCH] Change:Debian installer --- build/debian/DEBIAN/control | 2 +- build/debian/DEBIAN/preinst | 22 ---------------------- 2 files changed, 1 insertion(+), 23 deletions(-) diff --git a/build/debian/DEBIAN/control b/build/debian/DEBIAN/control index a223602a..7b2b7d30 100644 --- a/build/debian/DEBIAN/control +++ b/build/debian/DEBIAN/control @@ -1,5 +1,5 @@ Package: audiobookshelf -Version: 1.2.1 +Version: 1.6.41 Section: base Priority: optional Architecture: amd64 diff --git a/build/debian/DEBIAN/preinst b/build/debian/DEBIAN/preinst index 1469cbf8..3a2e271d 100644 --- a/build/debian/DEBIAN/preinst +++ b/build/debian/DEBIAN/preinst @@ -94,28 +94,6 @@ setup_config_interactive() { fi } -should_build_config() { - if [ -f "$CONFIG_PATH" ]; then - echo "You already have a config file. Do you want to use it?" - - options=("Yes" "No") - select yn in "${options[@]}" - do - case $yn in - "Yes") - false; return - ;; - "No") - true; return - ;; - esac - done - else - echo "No existing config found in $CONFIG_PATH" - true; return - fi -} - setup_config() { if [ -f "$CONFIG_PATH" ]; then echo "Existing config found."