~blamar/+junk/openstack-api-arrrg

« back to all changes in this revision

Viewing changes to vendor/boto/boto/manage/test_manage.py

  • Committer: Jesse Andrews
  • Date: 2010-05-28 06:05:26 UTC
  • Revision ID: git-v1:bf6e6e718cdc7488e2da87b21e258ccc065fe499
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from boto.manage.server import Server
 
2
from boto.manage.volume import Volume
 
3
import time
 
4
 
 
5
print '--> Creating New Volume'
 
6
volume = Volume.create()
 
7
print volume
 
8
 
 
9
print '--> Creating New Server'
 
10
server_list = Server.create()
 
11
server = server_list[0]
 
12
print server
 
13
 
 
14
print '----> Waiting for Server to start up'
 
15
while server.status != 'running':
 
16
    print '*'
 
17
    time.sleep(10)
 
18
print '----> Server is running'
 
19
 
 
20
print '--> Run "df -k" on Server'
 
21
status = server.run('df -k')
 
22
print status[1]
 
23
 
 
24
print '--> Now run volume.make_ready to make the volume ready to use on server'
 
25
volume.make_ready(server)
 
26
 
 
27
print '--> Run "df -k" on Server'
 
28
status = server.run('df -k')
 
29
print status[1]
 
30
 
 
31
print '--> Do an "ls -al" on the new filesystem'
 
32
status = server.run('ls -al %s' % volume.mount_point)
 
33
print status[1]
 
34