git://git.onelab.eu
/
myplc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
1d7a5a0
)
remove check-hrns from the PLC startup sequence
author
Mohamed Larabi
<mohamed.larabi@inria.fr>
Wed, 13 Nov 2013 14:00:53 +0000
(15:00 +0100)
committer
Mohamed Larabi
<mohamed.larabi@inria.fr>
Wed, 13 Nov 2013 14:00:53 +0000
(15:00 +0100)
plc.d/hrn
[deleted file]
patch
|
blob
|
history
diff --git
a/plc.d/hrn
b/plc.d/hrn
deleted file mode 100755
(executable)
index
c90ccbd
..0000000
--- a/
plc.d/hrn
+++ /dev/null
@@
-1,30
+0,0 @@
-#!/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