Drop use of vaultlocker PPA

vaultlocker is now provided in the UCA and in backports for bionic.

Change-Id: Ia2b4cfe75a152d4d8e1de7cda076b692ebd9d398
Closes-Bug: 1802905
This commit is contained in:
James Page 2018-11-13 11:41:06 +00:00
parent 910170bed0
commit 9dfe75d82e
1 changed files with 0 additions and 3 deletions

View File

@ -76,7 +76,6 @@ from charmhelpers.core.hookenv import (
from charmhelpers.fetch import (
apt_install,
apt_update,
add_source,
filter_installed_packages
)
from charmhelpers.core.host import (
@ -254,8 +253,6 @@ def install_vaultlocker():
pkgs = ['vaultlocker', 'python-hvac']
installed = len(filter_installed_packages(pkgs)) == 0
if not installed:
add_source('ppa:openstack-charmers/vaultlocker')
apt_update(fatal=True)
apt_install(pkgs, fatal=True)