summaryrefslogtreecommitdiff
path: root/tools/halt.py
diff options
context:
space:
mode:
authorMagnus Ahltorp <map@kth.se>2015-03-04 22:48:40 +0100
committerMagnus Ahltorp <map@kth.se>2015-03-04 22:48:40 +0100
commita706e79fa722f681320fe1b05824352b6b9a63fc (patch)
tree41907841f09f19d93adfab91eb314bb0789851f9 /tools/halt.py
parentf800e5fae8f9579328477b3bc3e939d9f4369d32 (diff)
parente0f11a58033d52c70bc76b4b5611cb88485d4653 (diff)
Merge branch 'extsign'
Diffstat (limited to 'tools/halt.py')
-rwxr-xr-xtools/halt.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/tools/halt.py b/tools/halt.py
new file mode 100755
index 0000000..cfbf14e
--- /dev/null
+++ b/tools/halt.py
@@ -0,0 +1,19 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+# Copyright (c) 2014, NORDUnet A/S.
+# See LICENSE for licensing information.
+
+import argparse
+import subprocess
+import sys
+
+parser = argparse.ArgumentParser(description='')
+parser.add_argument('toerl')
+parser.add_argument('nodedir')
+args = parser.parse_args()
+
+p = subprocess.Popen(
+ [args.toerl, args.nodedir],
+ stdin=subprocess.PIPE)
+p.communicate("halt().\n")