File: test_manage.py

package info (click to toggle)
python-boto 1.9b-4
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,820 kB
  • ctags: 2,583
  • sloc: python: 16,337; makefile: 106
file content (34 lines) | stat: -rw-r--r-- 792 bytes parent folder | download | duplicates (3)
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]