OLD | NEW |
(Empty) | |
| 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 |
OLD | NEW |