diff options
author | gasperfele@fri1.uni-lj.si <gasperfele@fri1.uni-lj.si@5cf9fbd1-b2bc-434c-b4b7-e852f4f63414> | 2015-04-09 18:00:43 +0000 |
---|---|---|
committer | gasperfele@fri1.uni-lj.si <gasperfele@fri1.uni-lj.si@5cf9fbd1-b2bc-434c-b4b7-e852f4f63414> | 2015-04-09 18:00:43 +0000 |
commit | d3e8f24b4da66059058627168f3f71eaf7626a93 (patch) | |
tree | cf2f524d42af38ef0b5ea556f8bc41df4bf07779 /kpov_judge/tasks/set_motd | |
parent | 54c45f7e5e85a088eeb301fb3677f9c743cccbb5 (diff) |
fixed disk template names
git-svn-id: https://svn.lusy.fri.uni-lj.si/kpov-public-svn/kpov-public@298 5cf9fbd1-b2bc-434c-b4b7-e852f4f63414
Diffstat (limited to 'kpov_judge/tasks/set_motd')
-rw-r--r-- | kpov_judge/tasks/set_motd/task.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/kpov_judge/tasks/set_motd/task.py b/kpov_judge/tasks/set_motd/task.py index ee82765..72a5105 100644 --- a/kpov_judge/tasks/set_motd/task.py +++ b/kpov_judge/tasks/set_motd/task.py @@ -56,14 +56,13 @@ computers = { }, 'Student': { 'disks': [ - { 'name': 'Student', } + { 'name': 'student-console', } ], 'flavor': 'm1.tiny', 'network_interfaces': [{'network': 'net1'}], 'config_drive': True, 'userdata': {'string': "#!/bin/bash\nsed -i '/cloud/d' /etc/fstab\npoweroff &\n"} - } - + } } networks = { 'net1': {'public': False}, 'test-net': {'public': True} } |