From 2f18c7f58fc0639ed4fbfbb5932beb099deb1aaf Mon Sep 17 00:00:00 2001 From: James Bowes Date: Thu, 20 Sep 2007 21:22:35 -0400 Subject: Add reboot module --- modules/reboot.py | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 modules/reboot.py (limited to 'modules/reboot.py') 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 +# +# 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 -- cgit