diff options
author | gasperfele@fri1.uni-lj.si <gasperfele@fri1.uni-lj.si@5cf9fbd1-b2bc-434c-b4b7-e852f4f63414> | 2016-10-01 21:46:34 +0000 |
---|---|---|
committer | gasperfele@fri1.uni-lj.si <gasperfele@fri1.uni-lj.si@5cf9fbd1-b2bc-434c-b4b7-e852f4f63414> | 2016-10-01 21:46:34 +0000 |
commit | fa8934667ad8eae30c81081bbaa868b227c119ed (patch) | |
tree | d2a69178cfb693c0da0ffbefaff2da70a64f52f5 /kpov_judge/tasks/custom_rdate | |
parent | 7210b74d6241a4264532aaaa2e1d771eaca4e073 (diff) |
added a global_params parameter to prepare_disks so that the task_name, username and task_url are pre-entered on the arbiters
git-svn-id: https://svn.lusy.fri.uni-lj.si/kpov-public-svn/kpov-public@351 5cf9fbd1-b2bc-434c-b4b7-e852f4f63414
Diffstat (limited to 'kpov_judge/tasks/custom_rdate')
-rw-r--r-- | kpov_judge/tasks/custom_rdate/task.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/kpov_judge/tasks/custom_rdate/task.py b/kpov_judge/tasks/custom_rdate/task.py index 8c2724d..c278792 100644 --- a/kpov_judge/tasks/custom_rdate/task.py +++ b/kpov_judge/tasks/custom_rdate/task.py @@ -143,7 +143,7 @@ def task_check(results, params): hints += ["wrong offset"] return score, hints -def prepare_disks(templates, params): +def prepare_disks(templates, task_params, global_params): # d = templates['simpleArbiterDhcp'] # print templates # print params @@ -157,7 +157,7 @@ def prepare_disks(templates, params): server "/usr/sbin/tcpd"; wait no; }} -""".format(**params) +""".format(**task_params) d.write('/etc/rlinetd.d/time', s1) s2 = """#!/usr/bin/python @@ -171,3 +171,4 @@ sys.stdout.write(struct.pack("!I", int(t))) """ d.write('/usr/local/bin/kpovrdate', s2) d.chmod(0775, '/usr/local/bin/kpovrdate') + write_default_config(templates['simpleArbiterDhcpGWRdate'], global_params) |