diff options
author | James Bowes <jbowes@redhat.com> | 2007-09-20 21:22:35 -0400 |
---|---|---|
committer | James Bowes <jbowes@redhat.com> | 2007-09-20 21:24:57 -0400 |
commit | 2f18c7f58fc0639ed4fbfbb5932beb099deb1aaf (patch) | |
tree | 7dca86db015d7c23b747831e0c84a47a5eb112d3 /modules/reboot.py | |
parent | 98010f591948fb4bf297c1c0c32def42f766edca (diff) | |
download | func-2f18c7f58fc0639ed4fbfbb5932beb099deb1aaf.tar.gz func-2f18c7f58fc0639ed4fbfbb5932beb099deb1aaf.tar.xz func-2f18c7f58fc0639ed4fbfbb5932beb099deb1aaf.zip |
Add reboot module
Diffstat (limited to 'modules/reboot.py')
-rwxr-xr-x | modules/reboot.py | 29 |
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 |