summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rwxr-xr-xdraklive-install2
2 files changed, 2 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 8040016..07ec117 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,4 @@
+- avoid copying inactive mount points
- increase window size when display size is > 800x600 (mga#23435)
- revert to rebooting after completing install from boot menu
- locate live medium from /run/mgalive/basedev instead of from disk label
diff --git a/draklive-install b/draklive-install
index 4f1231b..c830d5b 100755
--- a/draklive-install
+++ b/draklive-install
@@ -234,7 +234,7 @@ sub prepare_root {
sub build_copy_command {
my ($source, $dest) = @_;
join(' ',
- 'tar', 'c', '--one-file-system', '-C', $source, '.',
+ 'tar', 'c', '--one-file-system', '--exclude=./media', '--exclude=./mnt', '-C', $source, '.',
'|',
'tar', 'xvv', '-C', $dest,
);