diff options
Diffstat (limited to 'charms/trusty/cassandra/hooks/helpers.py')
-rw-r--r-- | charms/trusty/cassandra/hooks/helpers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/charms/trusty/cassandra/hooks/helpers.py b/charms/trusty/cassandra/hooks/helpers.py index b86a6b1..c94788f 100644 --- a/charms/trusty/cassandra/hooks/helpers.py +++ b/charms/trusty/cassandra/hooks/helpers.py @@ -103,7 +103,7 @@ def install_packages(packages): # The DSE packages are huge, so this might take some time. status_set('maintenance', 'Installing packages') with autostart_disabled(['cassandra']): - fetch.apt_install(packages, fatal=True) + fetch.apt_install(packages, options="--force-yes", fatal=True) # FOR CHARMHELPERS |