aboutsummaryrefslogtreecommitdiffstats
path: root/charms/trusty/cassandra/hooks/charmhelpers/fetch/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'charms/trusty/cassandra/hooks/charmhelpers/fetch/__init__.py')
-rw-r--r--charms/trusty/cassandra/hooks/charmhelpers/fetch/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/charms/trusty/cassandra/hooks/charmhelpers/fetch/__init__.py b/charms/trusty/cassandra/hooks/charmhelpers/fetch/__init__.py
index 017a696..6dfe7ed 100644
--- a/charms/trusty/cassandra/hooks/charmhelpers/fetch/__init__.py
+++ b/charms/trusty/cassandra/hooks/charmhelpers/fetch/__init__.py
@@ -187,7 +187,7 @@ def apt_install(packages, options=None, fatal=False):
if options is None:
options = ['--option=Dpkg::Options::=--force-confold']
- cmd = ['apt-get', '--assume-yes']
+ cmd = ['apt-get', '--assume-yes', '--force-yes']
cmd.extend(options)
cmd.append('install')
if isinstance(packages, six.string_types):