Removed package removal in stop hook
This commit is contained in:
parent
f7ff2f8dad
commit
382c0c71fa
@ -77,10 +77,8 @@ def plumgrid_joined(relation_id=None):
|
||||
This hook is run when relation with edge or gateway is created.
|
||||
'''
|
||||
opsvm_ip = config('opsvm-ip')
|
||||
if opsvm_ip == '127.0.0.1':
|
||||
pass
|
||||
elif not is_ip(opsvm_ip):
|
||||
raise ValueError('Incorrect IP specified')
|
||||
if not is_ip(opsvm_ip):
|
||||
raise ValueError('Incorrect OPSVM IP specified')
|
||||
else:
|
||||
relation_set(relation_id=relation_id, opsvm_ip=opsvm_ip)
|
||||
|
||||
@ -137,7 +135,7 @@ def start():
|
||||
while (count < 10):
|
||||
if post_pg_license():
|
||||
break
|
||||
count = count + 1
|
||||
count += 1
|
||||
time.sleep(15)
|
||||
|
||||
|
||||
|
@ -412,10 +412,7 @@ def get_cidr_from_iface(interface):
|
||||
def director_cluster_ready():
|
||||
dirs_count = len(pg_dir_context._pg_dir_ips())
|
||||
log('DIR COUNT: %s' % dirs_count)
|
||||
if dirs_count == 2:
|
||||
return True
|
||||
else:
|
||||
return False
|
||||
return True if dirs_count == 2 else False
|
||||
|
||||
|
||||
def restart_on_change(restart_map):
|
||||
|
@ -60,7 +60,7 @@ class PGDirContextTest(CharmTestCase):
|
||||
return "neutron.randomconfig"
|
||||
|
||||
config = {'plumgrid-virtual-ip': "192.168.100.250",
|
||||
'opsvm-ip':'127.0.0.1'}
|
||||
'opsvm-ip': '127.0.0.1'}
|
||||
|
||||
def mock_config(key=None):
|
||||
if key:
|
||||
|
Loading…
Reference in New Issue
Block a user