aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/SystemPlugins
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-10-13 11:54:45 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-10-13 11:54:45 +0000
commit10d4bf75934081d097b5e5ccde535d2b47efb2de (patch)
tree4d19e8c56dbaaf9ebe147cb1481e38cb0448144d /lib/python/Plugins/SystemPlugins
parent10222309ef422bc121db5fa25edeac16dccd12f2 (diff)
downloadenigma2-10d4bf75934081d097b5e5ccde535d2b47efb2de.tar.gz
enigma2-10d4bf75934081d097b5e5ccde535d2b47efb2de.zip
use "killall -9" instead of "killall" to apply restored settings
Diffstat (limited to 'lib/python/Plugins/SystemPlugins')
-rw-r--r--lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py b/lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py
index d0550c3e..c920d25b 100644
--- a/lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py
+++ b/lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py
@@ -213,7 +213,7 @@ class RestoreMenu(Screen):
def startRestore(self, ret = False):
if (ret == True):
self.exe = True
- self.session.open(Console, title = "Restore running", cmdlist = ["tar -xzvf " + self.path + "/" + self.sel + " -C /", "killall enigma2"])
+ self.session.open(Console, title = "Restore running", cmdlist = ["tar -xzvf " + self.path + "/" + self.sel + " -C /", "killall -9 enigma2"])
def Exit(self):
self.close()