diff options
| author | Daniel Baumann <daniel@debian.org> | 2007-09-23 14:46:37 +0200 |
|---|---|---|
| committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 17:25:58 +0100 |
| commit | ccea277caf476cdfef4c0f953df5a97062d8be42 (patch) | |
| tree | 6e1df0ead639f6c8da6547a36b5d8d206283d33e /scripts/live-bottom/10adduser | |
| parent | 3d52fbcb4fe70132ade14759d76573b471294800 (diff) | |
| download | live-boot-ccea277caf476cdfef4c0f953df5a97062d8be42.tar.gz live-boot-ccea277caf476cdfef4c0f953df5a97062d8be42.zip | |
Adding live-initramfs 1.87.4-1.
Diffstat (limited to 'scripts/live-bottom/10adduser')
| -rwxr-xr-x | scripts/live-bottom/10adduser | 33 |
1 files changed, 22 insertions, 11 deletions
diff --git a/scripts/live-bottom/10adduser b/scripts/live-bottom/10adduser index 394f007..f4c42f8 100755 --- a/scripts/live-bottom/10adduser +++ b/scripts/live-bottom/10adduser @@ -1,24 +1,30 @@ #!/bin/sh -PREREQ="" -DESCRIPTION="Adding live session user..." +#set -e -. /scripts/live-functions +# initramfs-tools header + +PREREQ="" prereqs() { - echo "$PREREQ" + echo "${PREREQ}" } -case $1 in -# get pre-requisites -prereqs) - prereqs - exit 0 - ;; +case "${1}" in + prereqs) + prereqs + exit 0 + ;; esac -log_begin_msg "$DESCRIPTION" +# live-initramfs header + +. /scripts/live-functions + +log_begin_msg "Adding live session user..." + +# live-initramfs script if [ "${BUILD_SYSTEM}" == "Debian" ]; then user_crypted="8Ab05sVQ4LLps" # as in `echo "live" | mkpasswd -s` @@ -52,6 +58,9 @@ set passwd/username set passwd/user-uid EOF +if [ -z "${NOSUDO}" ] +then + if [ -f /root/etc/sudoers ]; then if [ "${BUILD_SYSTEM}" == "Ubuntu" ]; then grep -q '^%admin' /root/etc/sudoers && sed -i -e '/^%admin/s/ALL$/NOPASSWD: ALL/' /root/etc/sudoers || echo '%admin ALL=(ALL) NOPASSWD: ALL' >> /root/etc/sudoers @@ -90,6 +99,8 @@ EOF fi fi +fi + if [ -L /root/home/$USERNAME/Examples ]; then chroot /root install -o $USERNAME -g $USERNAME -d /home/$USERNAME/Desktop/ mv /root/home/$USERNAME/Examples /root/home/$USERNAME/Desktop/ |
