File: test_manage.py

package info (click to toggle)
python-boto 2.49.0-4.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 9,888 kB
  • sloc: python: 86,396; makefile: 112
file content (34 lines) | stat: -rw-r--r-- 806 bytes parent folder | download | duplicates (13)
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
from boto.manage.server import Server
from boto.manage.volume import Volume
import time

print('--> Creating New Volume')
volume = Volume.create()
print(volume)

print('--> Creating New Server')
server_list = Server.create()
server = server_list[0]
print(server)

print('----> Waiting for Server to start up')
while server.status != 'running':
    print('*')
    time.sleep(10)
print('----> Server is running')

print('--> Run "df -k" on Server')
status = server.run('df -k')
print(status[1])

print('--> Now run volume.make_ready to make the volume ready to use on server')
volume.make_ready(server)

print('--> Run "df -k" on Server')
status = server.run('df -k')
print(status[1])

print('--> Do an "ls -al" on the new filesystem')
status = server.run('ls -al %s' % volume.mount_point)
print(status[1])