From 496ab55ca8e70f4b7fe2fb77bf9997d335fe8ff0 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sat, 18 May 2013 09:41:27 +0200 Subject: dracut/adduser.sh: change shell to bash for the live user. --- dracut/adduser.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dracut/adduser.sh b/dracut/adduser.sh index d3c19c3..808ad1a 100644 --- a/dracut/adduser.sh +++ b/dracut/adduser.sh @@ -12,7 +12,7 @@ echo "USERNAME=$USERNAME" >> ${NEWROOT}/etc/default/live.conf chmod 644 ${NEWROOT}/etc/default/live.conf # Create new user and remove password. We'll use autologin by default. -chroot ${NEWROOT} useradd -c $USERNAME -m $USERNAME -G systemd-journal,wheel -s /bin/sh +chroot ${NEWROOT} useradd -c $USERNAME -m $USERNAME -G systemd-journal,wheel -s /bin/bash chroot ${NEWROOT} passwd -d $USERNAME 2>&1 >/dev/null # Enable sudo permission by default. -- cgit 1.4.1