X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/10d4bf75934081d097b5e5ccde535d2b47efb2de..2aa2925cf52add4b737c17a7e75c88a4fcc7057c:/lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py diff --git a/lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py b/lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py index c920d25b..7a918da6 100644 --- a/lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py +++ b/lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py @@ -1,9 +1,7 @@ -from enigma import * from Screens.Screen import Screen from Screens.MessageBox import MessageBox from Screens.Console import Console from Components.ActionMap import ActionMap, NumberActionMap -from Components.Pixmap import * from Components.Pixmap import Pixmap from Components.Label import Label from Components.MenuList import MenuList @@ -11,15 +9,14 @@ from Components.config import ConfigSelection, ConfigSubsection, KEY_LEFT, KEY_R from Components.ConfigList import ConfigList from Plugins.Plugin import PluginDescriptor -from Tools.NumericalTextInput import * from Tools.Directories import * -import os -import string -import time -import datetime +from os import path, makedirs, listdir +from time import localtime +from datetime import date plugin_path = "" +# FIXME: harddiskmanager has a better overview about available mointpoints! BackupPath = { "hdd" : "/media/hdd/backup", "usb" : "/media/usb/backup", @@ -36,10 +33,10 @@ class BackupSetup(Screen): skin = """ - - - + + + @@ -107,16 +104,16 @@ class BackupSetup(Screen): self.list = [ ] self["config"] = ConfigList(self.list) self.backup = ConfigSubsection() - self.backup.type = ConfigSelection(choices = [("full", _("full /etc directory")), ("settings", _("only /etc/enigma2 directory")), ("var", _("/var directory")), ("skin", _("/usr/share/enigma2 directory"))]) - self.backup.location = ConfigSelection(choices = [("usb", _("USB Stick")), ("cf", _("CF Drive")), ("hdd", _("Harddisk"))]) + self.backup.type = ConfigSelection(choices = [("settings", _("enigma2 and network")), ("var", _("/var directory")), ("skin", _("/usr/share/enigma2 directory"))], default="settings") + self.backup.location = ConfigSelection(choices = [("hdd", _("Harddisk")), ("usb", _("USB Stick")), ("cf", _("CF Drive"))]) self.list.append(getConfigListEntry(_("Backup Mode"), self.backup.type)) self.list.append(getConfigListEntry(_("Backup Location"), self.backup.location)) def createBackupfolders(self): self.path = BackupPath[self.backup.location.value] print "Creating Backup Folder if not already there..." - if (os.path.exists(self.path) == False): - os.makedirs(self.path) + if (path.exists(self.path) == False): + makedirs(self.path) def Backup(self): print "this will start the backup now!" @@ -128,17 +125,14 @@ class BackupSetup(Screen): def runBackup(self, result): if result: - if os.path.ismount(MountPoints[self.backup.location.value]): + if path.ismount(MountPoints[self.backup.location.value]): self.createBackupfolders() - d = time.localtime() - dt = datetime.date(d.tm_year, d.tm_mon, d.tm_mday) + d = localtime() + dt = date(d.tm_year, d.tm_mon, d.tm_mday) self.path = BackupPath[self.backup.location.value] - if self.backup.type.value == "full": - print "Backup Mode: Full" - self.session.open(Console, title = "Backup running", cmdlist = ["tar -czvf " + self.path + "/" + str(dt) + "_full_backup.tar.gz /etc/"]) - elif self.backup.type.value == "settings": + if self.backup.type.value == "settings": print "Backup Mode: Settings" - self.session.open(Console, title = "Backup running", cmdlist = ["tar -czvf " + self.path + "/" + str(dt) + "_settings_backup.tar.gz /etc/enigma2/"]) + self.session.open(Console, title = "Backup running", cmdlist = ["tar -czvf " + self.path + "/" + str(dt) + "_settings_backup.tar.gz /etc/enigma2/ /etc/network/interfaces /etc/wpa_supplicant.conf"]) elif self.backup.type.value == "var": print "Backup Mode: var" self.session.open(Console, title = "Backup running", cmdlist = [ "tar -czvf " + self.path + "/" + str(dt) + "_var_backup.tar.gz /var/"]) @@ -193,9 +187,9 @@ class RestoreMenu(Screen): def fill_list(self): self.flist = [] self.path = BackupPath[self.backup.location.value] - if (os.path.exists(self.path) == False): - os.makedirs(self.path) - for file in os.listdir(self.path): + if (path.exists(self.path) == False): + makedirs(self.path) + for file in listdir(self.path): if (file.endswith(".tar.gz")): self.flist.append((file)) self.entry = True