diff options
Diffstat (limited to 'charms/trusty/cassandra/hooks/hooks.py')
-rw-r--r-- | charms/trusty/cassandra/hooks/hooks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/charms/trusty/cassandra/hooks/hooks.py b/charms/trusty/cassandra/hooks/hooks.py index 5f7a0c6..ef38c20 100644 --- a/charms/trusty/cassandra/hooks/hooks.py +++ b/charms/trusty/cassandra/hooks/hooks.py @@ -35,7 +35,7 @@ def bootstrap(): packages = ['python3-bcrypt', 'python3-cassandra'] set_proxy() fetch.configure_sources(update=True) - fetch.apt_install(packages, options="--force-yes", fatal=True) + fetch.apt_install(packages,fatal=True) import bcrypt # NOQA: flake8 import cassandra # NOQA: flake8 |