From 9cc039a1a7c1acb2c3007a437f1502153d222615 Mon Sep 17 00:00:00 2001
From: Mohamed Larabi <mohamed.larabi@inria.fr>
Date: Tue, 12 Nov 2013 15:36:41 +0100
Subject: [PATCH] Check/Set HRNs of Sites/Slices/Persons at PLC startup

---
 plc.d/hrn | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100755 plc.d/hrn

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 <mohamed.larabi@inria.fr>
+#
+
+# 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
-- 
2.47.0