From c68107f4be0a5939c0980b51b2ba4ac58453642e Mon Sep 17 00:00:00 2001 From: James Page Date: Tue, 13 Nov 2018 11:39:31 +0000 Subject: [PATCH] Drop use of vaultlocker PPA vaultlocker is now provided in the UCA and in backports for bionic. Change-Id: Iedff261d08401e99eb4e9f913458648d13fff048 Closes-Bug: 1802905 --- hooks/nova_compute_hooks.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/hooks/nova_compute_hooks.py b/hooks/nova_compute_hooks.py index 1c4b11a1..c256847c 100755 --- a/hooks/nova_compute_hooks.py +++ b/hooks/nova_compute_hooks.py @@ -57,7 +57,6 @@ from charmhelpers.fetch import ( apt_purge, apt_update, filter_installed_packages, - add_source, ) from charmhelpers.contrib.openstack.utils import ( @@ -257,8 +256,6 @@ def install_vaultlocker(): if config('encrypt'): installed = len(filter_installed_packages(['vaultlocker'])) == 0 if not installed: - add_source('ppa:openstack-charmers/vaultlocker') - apt_update(fatal=True) apt_install('vaultlocker', fatal=True)