diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-05-18 16:12:34 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-05-18 16:12:34 -0300 |
commit | 9de4af841974c542bdb519b09633063a64c75391 (patch) | |
tree | 0960db7bb0acdad86ba9f85cf18e69f71e52afe9 | |
parent | d53eb17446015198234829e42721fa22b5991769 (diff) |
More rebranding\!
-rw-r--r-- | overlay/etc/hosts | 2 | ||||
-rw-r--r-- | overlay/etc/issue | 2 | ||||
-rwxr-xr-x | overlay/etc/rc.d/archiso | 8 |
3 files changed, 6 insertions, 6 deletions
diff --git a/overlay/etc/hosts b/overlay/etc/hosts index b6f25e3..8b2fe42 100644 --- a/overlay/etc/hosts +++ b/overlay/etc/hosts @@ -3,6 +3,6 @@ # #<ip-address> <hostname.domain.org> <hostname> -127.0.0.1 localhost.localdomain localhost archiso +127.0.0.1 localhost.localdomain localhost libreiso # End of file diff --git a/overlay/etc/issue b/overlay/etc/issue index 5af807c..2e5b032 100644 --- a/overlay/etc/issue +++ b/overlay/etc/issue @@ -1,5 +1,5 @@ [H[2J Parabola GNU/Linux-libre Live ISO (\l) \s-\r \m. -Default logins "root" and "arch" have no password. +Default logins "root" and "libre" have no password. To begin installation, login as root. 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 } |