Remove hardcoded ppa from install function

Change-Id: I9fd8d984b144ca8424b981210f62257fca57e54e
Closes-Bug: 1838578
This commit is contained in:
Andrew McLeod 2019-08-01 16:57:24 +02:00
parent 5a66794cca
commit 7d5991845b

View File

@ -1,7 +1,6 @@
import collections
import socket
import charmhelpers.fetch
import charms_openstack.adapters
import charms_openstack.charm
import charms.reactive.relations as relations
@ -59,6 +58,4 @@ class MasakariMonitorsCharm(charms_openstack.charm.OpenStackCharm):
project='services')
def install(self):
# TODO: Stop using the PPA; https://bugs.launchpad.net/bugs/1838578
charmhelpers.fetch.add_source('ppa:gnuoy/bionic-stein')
super(MasakariMonitorsCharm, self).install()