diff options
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | draksnapshot-config | 3 |
2 files changed, 5 insertions, 0 deletions
@@ -4,6 +4,8 @@ - configurator: o exclude snapshot point from being backuped (thus preventing to recursively backup the backup directory) (#39801) + o default to /media instead of /home if not configured, where the + discs will be mounted by HAL (#39802) Version 0.9 - 3 April 2008, Thierry Vignaud diff --git a/draksnapshot-config b/draksnapshot-config index 72aab47..594c85e 100755 --- a/draksnapshot-config +++ b/draksnapshot-config @@ -101,6 +101,9 @@ my %interval_titles = ( my (%entries, $where); +# if not configured, just default where will be mounted the discs by HAL: +$backup_directory ||= '/media/'; + my $box; gtkadd($my_win->{window}, gtknew('VBox', children => [ |