summaryrefslogtreecommitdiff
path: root/overlay/etc/rc.d/archiso
diff options
context:
space:
mode:
Diffstat (limited to 'overlay/etc/rc.d/archiso')
-rwxr-xr-xoverlay/etc/rc.d/archiso8
1 files changed, 4 insertions, 4 deletions
diff --git a/overlay/etc/rc.d/archiso b/overlay/etc/rc.d/archiso
index 435152a..3355737 100755
--- a/overlay/etc/rc.d/archiso
+++ b/overlay/etc/rc.d/archiso
@@ -55,18 +55,18 @@ do_homedir ()
stat_busy "Scanning for existing HOME directory"
user="$(cmdline_param homeuser)"
for hdir in $(find /mnt -name "home/${user}" 2>/dev/null); do
- mkdir -p "/home/arch/"
+ mkdir -p "/home/libre/"
# break after the first success...
- mount --bind "${hdir}" "/home/arch/" && break
+ mount --bind "${hdir}" "/home/libre/" && break
done
stat_done
}
do_makeuser ()
{
- stat_busy "Making the default user arch"
+ stat_busy "Making the default user libre"
addgroups="audio,disk,optical,wheel"
- useradd -m -p "" -g users -G $addgroups arch
+ useradd -m -p "" -g users -G $addgroups libre
stat_done
}