blob: eb362a45581722af5e483e052a77619575863d77 (
plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
#!/usr/bin/env python
import subprocess
from cloudify import ctx
from cloudify.exceptions import OperationRetry
def check_command(command):
try:
process = subprocess.Popen(
command.split()
)
except OSError:
return False
output, error = process.communicate()
ctx.logger.debug('command: {0} '.format(command))
ctx.logger.debug('output: {0} '.format(output))
ctx.logger.debug('error: {0} '.format(error))
ctx.logger.debug('process.returncode: {0} '.format(process.returncode))
if process.returncode:
ctx.logger.error('Running `{0}` returns error.'.format(command))
return False
return True
def execute_command(_command):
ctx.logger.debug('_command {0}.'.format(_command))
subprocess_args = {
'args': _command.split(),
'stdout': subprocess.PIPE,
'stderr': subprocess.PIPE
}
ctx.logger.debug('subprocess_args {0}.'.format(subprocess_args))
process = subprocess.Popen(**subprocess_args)
output, error = process.communicate()
ctx.logger.debug('command: {0} '.format(_command))
ctx.logger.debug('output: {0} '.format(output))
ctx.logger.debug('error: {0} '.format(error))
ctx.logger.debug('process.returncode: {0} '.format(process.returncode))
if process.returncode:
ctx.logger.error('Running `{0}` returns error.'.format(_command))
return False
return output
if __name__ == '__main__':
docker_command = 'docker ps'
if not check_command(docker_command):
raise OperationRetry('Waiting for docker to be installed.')
finished = False
ps = execute_command('ps -ef')
for line in ps.split('\n'):
if '/usr/bin/python /usr/bin/cloud-init modules' in line:
ctx.logger.error('in line')
raise OperationRetry('Waiting for Cloud Init to finish.')
ctx.logger.info('Docker is ready and Cloud Init finished.')
|