-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrestart_configurator.py
37 lines (32 loc) · 1.17 KB
/
restart_configurator.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import subprocess
#cmd = "sudo ip netns exec nfp-proxy ssh -i ~/configurator_key.pem [email protected] docker exec -d radius_configurator service nfp-pecan restart"
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
(stdout, stderr) = proc.communicate()
if proc.returncode:
print "Error in getting docker id"
print stderr
else:
docker_id = stdout.strip()
print 'docker id: %s' % docker_id
cmd = "sudo ip netns exec nfp-proxy"
cmd += " docker exec " + docker_id + " service nfp-pecan restart"
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
(stdout, stderr) = proc.communicate()
print 'out: ', stdout
print 'err: ', stderr
if proc.returncode:
print "Error in pecan start"
print stderr
else:
print 'pecan restarted'
"""if stderr:
LOG.error(stderr)
print "Error in pecan restart"
print stderr
else:
LOG.debug("configurator restarted")
print stdout
print "success"
"""