From 6758b2e36a058eb5b9a3c2ec719a36a48179225b Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Wed, 22 Apr 2015 18:21:01 +0200 Subject: Replace halt.py with a more generic to_catlfish.py. Use to_catlfish.py with "init:stop()". This will be useful for stopping in non testing scenarios. --- tools/halt.py | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100755 tools/halt.py (limited to 'tools/halt.py') diff --git a/tools/halt.py b/tools/halt.py deleted file mode 100755 index 0cb43ed..0000000 --- a/tools/halt.py +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- -# -# Copyright (c) 2014, NORDUnet A/S. -# See LICENSE for licensing information. - -import argparse -import subprocess -import sys -import select - -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.stdin.write("halt().\n") -p.stdin.flush() -select.select([], [], [], 0.5) -p.stdin.close() -p.wait() -- cgit v1.1