summaryrefslogtreecommitdiff
path: root/portato/plugins
diff options
context:
space:
mode:
authornecoro <>2007-07-05 02:40:39 +0000
committernecoro <>2007-07-05 02:40:39 +0000
commit7d757db73d862b368c57aed2da769a53b3e1e920 (patch)
treef1c6a464aaa8a6ee340e141652b152ff667b2813 /portato/plugins
parent1a3073d1e195118c636df983fcd647d7d028cd82 (diff)
downloadportato-7d757db73d862b368c57aed2da769a53b3e1e920.tar.gz
portato-7d757db73d862b368c57aed2da769a53b3e1e920.tar.bz2
portato-7d757db73d862b368c57aed2da769a53b3e1e920.zip
added ability to disable/enable plugins in qt too; added shutdown plugin
Diffstat (limited to 'portato/plugins')
-rw-r--r--portato/plugins/shutdown.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/portato/plugins/shutdown.py b/portato/plugins/shutdown.py
new file mode 100644
index 0000000..a29ee6f
--- /dev/null
+++ b/portato/plugins/shutdown.py
@@ -0,0 +1,17 @@
+# -*- coding: utf-8 -*-
+#
+# File: portato/plugins/shutdown.py
+# This file is part of the Portato-Project, a graphical portage-frontend.
+#
+# Copyright (C) 2007 René 'Necoro' Neumann
+# This is free software. You may redistribute copies of it under the terms of
+# the GNU General Public License version 2.
+# There is NO WARRANTY, to the extent permitted by law.
+#
+# Written by René 'Necoro' Neumann <necoro@necoro.net>
+
+import os
+
+def shutdown (*args):
+ """Shutdown the computer. May not work if not root."""
+ os.system("shutdown -h now")