diff options
-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), |