diff options
author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2016-11-12 22:32:09 +0000 |
---|---|---|
committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2016-11-12 22:32:09 +0000 |
commit | 451c4f4c5c05efa3aaed18f723809c3d1287dd87 (patch) | |
tree | ea8731e458ea9bd64b55398b72ecab8167833054 | |
parent | 66d7f76df255efeaf2240b16114c222e5328cab0 (diff) | |
download | drakiso-451c4f4c5c05efa3aaed18f723809c3d1287dd87.tar drakiso-451c4f4c5c05efa3aaed18f723809c3d1287dd87.tar.gz drakiso-451c4f4c5c05efa3aaed18f723809c3d1287dd87.tar.bz2 drakiso-451c4f4c5c05efa3aaed18f723809c3d1287dd87.tar.xz drakiso-451c4f4c5c05efa3aaed18f723809c3d1287dd87.zip |
Mounts.pm: use overlayfs instead of unionfs.
-rw-r--r-- | lib/MDV/Draklive/Mounts.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/MDV/Draklive/Mounts.pm b/lib/MDV/Draklive/Mounts.pm index 7aea117..15b6947 100644 --- a/lib/MDV/Draklive/Mounts.pm +++ b/lib/MDV/Draklive/Mounts.pm @@ -30,7 +30,7 @@ our $default = { our $simple_union = { root => '/union', - overlay => 'unionfs', + overlay => 'overlay', dirs => [ { mountpoint => '/media', @@ -42,7 +42,7 @@ our $simple_union = { our $squash_rw_union = { root => '/union', - overlay => 'unionfs', + overlay => 'overlay', dirs => [ $dir_distrib_sqfs, { @@ -56,7 +56,7 @@ sub volatile_squash_union { my ($o_modules) = @_; { root => '/union', - overlay => 'unionfs', + overlay => 'overlay', dirs => [ $dir_distrib_sqfs, if_($o_modules, $dir_modules), @@ -69,7 +69,7 @@ sub squash_union { my ($default_size, $o_min_size, $o_modules) = @_; { root => '/union', - overlay => 'unionfs', + overlay => 'overlay', dirs => [ $dir_distrib_sqfs, if_($o_modules, $dir_modules), |