summaryrefslogtreecommitdiffstats
path: root/modules/reboot.py
diff options
context:
space:
mode:
authorJames Bowes <jbowes@redhat.com>2007-09-20 21:22:35 -0400
committerJames Bowes <jbowes@redhat.com>2007-09-20 21:24:57 -0400
commit2f18c7f58fc0639ed4fbfbb5932beb099deb1aaf (patch)
tree7dca86db015d7c23b747831e0c84a47a5eb112d3 /modules/reboot.py
parent98010f591948fb4bf297c1c0c32def42f766edca (diff)
downloadthird_party-func-2f18c7f58fc0639ed4fbfbb5932beb099deb1aaf.tar.gz
third_party-func-2f18c7f58fc0639ed4fbfbb5932beb099deb1aaf.tar.xz
third_party-func-2f18c7f58fc0639ed4fbfbb5932beb099deb1aaf.zip
Add reboot module
Diffstat (limited to 'modules/reboot.py')
-rwxr-xr-xmodules/reboot.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/modules/reboot.py b/modules/reboot.py
new file mode 100755
index 0000000..72f9a24
--- /dev/null
+++ b/modules/reboot.py
@@ -0,0 +1,29 @@
+# Copyright 2007, Red Hat, Inc
+# James Bowes <jbowes@redhat.com>
+#
+# This software may be freely redistributed under the terms of the GNU
+# general public license.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+
+from modules import web_svc
+
+import subprocess
+
+class Reboot(web_svc.WebSvc):
+
+ def __init__(self):
+ self.methods = {
+ "reboot_reboot" : self.reboot
+ }
+ web_svc.WebSvc.__init__(self)
+
+ def reboot(self, when='now', message=''):
+ return subprocess.call(["/sbin/shutdown", '-r', when, message])
+
+
+methods = Reboot()
+register_rpc = methods.register_rpc