From fa8934667ad8eae30c81081bbaa868b227c119ed Mon Sep 17 00:00:00 2001 From: "gasperfele@fri1.uni-lj.si" Date: Sat, 1 Oct 2016 21:46:34 +0000 Subject: 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 --- kpov_judge/tasks/custom_rdate/task.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'kpov_judge/tasks/custom_rdate/task.py') 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) -- cgit v1.2.1