From: Mohamed Larabi Date: Tue, 12 Nov 2013 14:36:41 +0000 (+0100) Subject: Check/Set HRNs of Sites/Slices/Persons at PLC startup X-Git-Tag: myplc-5.3-1~7 X-Git-Url: http://git.onelab.eu/?p=myplc.git;a=commitdiff_plain;h=9cc039a1a7c1acb2c3007a437f1502153d222615 Check/Set HRNs of Sites/Slices/Persons at PLC startup --- diff --git a/plc.d/hrn b/plc.d/hrn new file mode 100755 index 0000000..c90ccbd --- /dev/null +++ b/plc.d/hrn @@ -0,0 +1,30 @@ +#!/bin/bash +# +# priority: 1300 +# +# Check and Set the HRNs of Sites/Slices/Persons +# +# Copyright (C) 2006 The Trustees of Princeton University +# Mohamed Amine Larabi +# + +# Source function library and configuration +. /etc/plc.d/functions +. /etc/planetlab/plc_config + +# Be verbose +set -x + + +case "$1" in + start) + MESSAGE=$"Checking/Setting HRNs" + dialog "$MESSAGE" + + check-hrns.py + + result "$MESSAGE" + ;; +esac + +exit $ERRORS