summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-09-21 11:27:02 -0400
committerMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-09-21 11:27:02 -0400
commit89a9dd51a62552a2e9550ec4e12b9a452762f5aa (patch)
tree4a4eb16d252be34d6885bc8cdc9945bf158f63a0 /modules
parenta4ca1866ea731b67638a65c5cb8e052f07cdbaa1 (diff)
parentf945d9b43021fccde0544d4580778ae13ca50e22 (diff)
downloadthird_party-func-89a9dd51a62552a2e9550ec4e12b9a452762f5aa.tar.gz
third_party-func-89a9dd51a62552a2e9550ec4e12b9a452762f5aa.tar.xz
third_party-func-89a9dd51a62552a2e9550ec4e12b9a452762f5aa.zip
Merge branch 'master' of ssh://git.fedoraproject.org/git/hosted/func
Diffstat (limited to 'modules')
-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