more accurate solution for non-interactive update
authorChris Koeritz <fred@gruntose.com>
Wed, 21 Mar 2018 01:49:31 +0000 (21:49 -0400)
committerChris Koeritz <fred@gruntose.com>
Wed, 21 Mar 2018 01:49:31 +0000 (21:49 -0400)
should work now, if the reference sites are right about the variable for non-interactive.  the var was not passed in before since sudo is not like a sub-shell.  now the two pieces needed, setting the var and running command that listens to var, are done in a single multi-line bash command.

scripts/system/naive_system_updater.sh

index 3bd16a284874065c3f3ed3d2c4a6f0b9e76bf9e8..7790fe884fe87a03602939d89a10c29aebf0306b 100644 (file)
@@ -3,9 +3,13 @@ source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
 
 sudo apt-get update -y
 test_or_die "problem while doing 'apt-get update'"
+
 # newest magic to tell dpkg to go with existing config files and force non-interactive version.
-export DEBIAN_FRONTEND=noninteractive
-sudo apt-get dist-upgrade -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold"
+sudo bash -c "\
+  export DEBIAN_FRONTEND=noninteractive; \
+  apt-get dist-upgrade -y -o Dpkg::Options::=\"--force-confdef\" \
+     -o Dpkg::Options::=\"--force-confold\"; \
+"
 test_or_die "problem while doing 'apt-get dist-upgrade'"