Skip to content

Commit dcc8162

Browse files
committed
fix: Allow apt-get upgrade to be fully noninteractive
This is the same change that was made to the main FSND repository and stops the provisioning script from stopping waiting for user input (which is not possible when running `vagrant up`) when upgrading GRUB bootloader. Resolves: #8
1 parent 15acd68 commit dcc8162

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pg_config.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apt-get -qqy update
2-
apt-get -qqy upgrade
2+
DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade
33
apt-get -qqy install postgresql python-psycopg2
44
apt-get -qqy install python-sqlalchemy
55
apt-get -qqy install python-pip

0 commit comments

Comments
 (0)