We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8d2ef4 commit 6d4b103Copy full SHA for 6d4b103
ee/core/aptget.py
@@ -56,7 +56,8 @@ def install(self, packages):
56
all_packages = ' '.join(packages)
57
try:
58
with open('/var/log/ee/ee.log', 'a') as f:
59
- proc = subprocess.Popen('apt-get install -y {0}'
+ proc = subprocess.Popen("apt-get install -o Dpkg::Options::=--"
60
+ "force-confold -y {0}"
61
.format(all_packages), shell=True,
62
stdin=None, stdout=f, stderr=f,
63
executable="/bin/bash")
0 commit comments