From: Kidelo Date: Thu, 12 Jan 2012 22:02:46 +0000 (+0100) Subject: correct service startup and password management for non-default-user [Closes: issue1133] X-Git-Tag: v0.9.48~1 X-Git-Url: http://git.grml.org/?p=grml-autoconfig.git;a=commitdiff_plain;h=9adf1670d57462101cc1eeca041f1fc497688aa1 correct service startup and password management for non-default-user [Closes: issue1133] --- diff --git a/autoconfig b/autoconfig index 2e10328..dce5adb 100644 --- a/autoconfig +++ b/autoconfig @@ -95,7 +95,6 @@ CONFIG_TESTCD='yes' # CD checker CONFIG_TIME='yes' # set clock, check for bootparam utc/gmt [only in live-mode] CONFIG_TIMEZONE='yes' # get bootparam 'tz' and set it as /etc/localtime [only in live-mode] CONFIG_TOHD='yes' # bootoption tohd=... -CONFIG_USERFSTAB='yes' # check for username of uid 1000 CONFIG_VIRTUALBOX_SHARED_FOLDERS='yes' # set up shared folders in VirtualBox environment CONFIG_VNC='yes' # check for bootparam vnc CONFIG_WELCOME='yes' # play welcome sound (audio) @@ -107,6 +106,6 @@ CONFIG_XSTARTUP='yes' # start X window system via grml-x [only in live-m CONFIG_AUTOCONFIG_LOCAL='/etc/grml/autoconfig.local' -[ -e ${CONFIG_AUTOCONFIG_LOCAL} ] && . ${CONFIG_AUTOCONFIG_LOCAL} +[ -r ${CONFIG_AUTOCONFIG_LOCAL} ] && . ${CONFIG_AUTOCONFIG_LOCAL} ## END OF FILE ################################################################# diff --git a/autoconfig.functions b/autoconfig.functions index 5a25040..6e0a6b8 100755 --- a/autoconfig.functions +++ b/autoconfig.functions @@ -384,14 +384,38 @@ config_hostname(){ # fstabuser (needed when running from harddisk with username != grml {{{ config_userfstab(){ + # force load of build-in and local config [ -r /etc/grml/autoconfig ] && . /etc/grml/autoconfig + [ -r /etc/grml/autoconfig ] && . /etc/grml/autoconfig.local + + # 1st. try configured fstab user if [ -n "$CONFIG_FSTAB_USER" ] ; then - fstabuser="$CONFIG_FSTAB_USER" - else - fstabuser=$(getent passwd 1000 | cut -d: -f1) + fstabuser=$(getent passwd $CONFIG_FSTAB_USER | cut -d: -f1) fi - # if not yet set fall back to default 'grml' user - [ -n "$fstabuser" ] || fstabuser='grml' + + # 2nd. use standard user id + [ -n "$fstabuser" ] || fstabuser=$(getent passwd 1000 | cut -d: -f1) + + # 3rd. use standard user name + [ -n "$fstabuser" ] || fstabuser=$(getent passwd grml | cut -d: -f1) + + # if not yet set fall back to 'root' user, avoid bad /etc/fstab + [ -n "$fstabuser" ] || fstabuser='root' +} +# }}} + +# local_user (needed when running with username != grml {{{ +config_userlocal() { + + # force load of build-in and local config + [ -r /etc/grml/autoconfig ] && . /etc/grml/autoconfig + [ -r /etc/grml/autoconfig ] && . /etc/grml/autoconfig.local + + # 1st. try id of primary user + localuser=$(getent passwd 1000 | cut -d: -f1) + + # 2nd. use name standard user + [ -n "$localuser" ] || localuser=$(getent passwd grml | cut -d: -f1) } # }}} @@ -1017,7 +1041,9 @@ config_ssh(){ if checkbootparam 'ssh' ; then SSH_PASSWD='' SSH_PASSWD="$(getbootparam 'ssh' 2>>$DEBUG)" - einfo "Bootoption ssh found, trying to set password for user grml." + config_userlocal + einfo "Bootoption ssh found, trying to set password for user $localuser" + [ -z "$localuser" ] && eend 1 eindent if [ -z "$SSH_PASSWD" ] ; then if [ -x /usr/bin/apg ] ; then @@ -1046,19 +1072,19 @@ if checkbootparam 'ssh' ; then if [ -n "$SSH_PASSWD" ] ; then # chpasswd sucks, seriously. if chpasswd --help 2>&1 | grep -q -- '-m,' ; then - echo "grml:$SSH_PASSWD" | chpasswd -m + echo "$localuser:$SSH_PASSWD" | chpasswd -m else - echo "grml:$SSH_PASSWD" | chpasswd + echo "$localuser:$SSH_PASSWD" | chpasswd fi fi - einfo 'Starting secure shell server in background.' + einfo "Starting secure shell server in background for user $localuser" /etc/init.d/rmnologin start >>$DEBUG 2>>$DEBUG /etc/init.d/ssh start >>$DEBUG 2>>$DEBUG & eend $? eindent - ewarn 'Warning: please change the password for user grml as soon as possible!' + ewarn "Warning: please change the password for user $localuser as soon as possible!" eoutdent fi } @@ -1066,12 +1092,10 @@ fi # {{{ autostart of x11vnc config_vnc(){ - -USER=grml # TODO: make it dynamically configurable if checkbootparam 'vnc' ; then VNC_PASSWD='' VNC_PASSWD="$(getbootparam 'vnc' 2>>$DEBUG)" - einfo "Bootoption vnc found, trying to set password for user $USER." + einfo "Bootoption vnc found, trying to set password for user $localuser." eindent if [ -z "$VNC_PASSWD" ] ; then if [ -x /usr/bin/apg ] ; then @@ -1107,7 +1131,7 @@ if checkbootparam 'vnc' ; then eend 1 else /usr/bin/x11vnc -storepasswd "$VNC_PASSWD" "$VNCDIR"/passwd ; eend $? - /bin/chown -R "$USER": "$VNCDIR" + /bin/chown -R "$localuser": "$VNCDIR" fi fi if checkbootparam 'vnc_connect' ; then @@ -1123,13 +1147,15 @@ fi } # }}} -# {{{ set password for user grml +# {{{ set password for default user config_passwd(){ if checkbootparam 'passwd' >>$DEBUG 2>&1; then - einfo "Bootoption passwd found." PASSWD="$(getbootparam 'passwd' 2>>$DEBUG)" + config_userlocal + einfo "Bootoption passwd found, change password for user '$localuser'." + [ -z "$localuser" ] && eend 1 if [ -n "$PASSWD" ] ; then - echo "grml:$PASSWD" | chpasswd -m ; eend $? + echo "$localuser:$PASSWD" | chpasswd -m ; eend $? else eerror "No given password for ssh found. Autostart of SSH will not work." ; eend 1 fi @@ -1435,10 +1461,10 @@ if checkbootparam 'startx' && ! echo "$CMDLINE" | grep -q 'startx.*nostartx' ; t einfo "Window manager ${WHITE}${WINDOWMANAGER}${NORMAL} found as bootoption." && eend 0 fi einfo "Setting up and invoking grml-x ${WINDOWMANAGER}. Just exit X windows system to get full featured consoles." - config_userfstab || fstabuser='grml' + config_userlocal cat>|/etc/init.d/xstartup</dev/null eend $? diff --git a/grml-autoconfig b/grml-autoconfig index 819a2b3..a5a800d 100755 --- a/grml-autoconfig +++ b/grml-autoconfig @@ -93,8 +93,6 @@ checkvalue $CONFIG_FIX_PASSWD && config_fix_passwd checkvalue $CONFIG_HOSTNAME && config_hostname -checkvalue $CONFIG_USERFSTAB && config_userfstab - checkvalue $CONFIG_CONFIGFS && config_configfs checkvalue $CONFIG_TIME && config_time