Fri Mar 28, 2014 3:01 pm
Refracta Snapshot changes:
* Added cpulimit to config for rsync and mksquashfs.
* Snapshot creates /e-t-c/sudoers.d/live for primary user, NOPASSWD
* Boot menu for live image is generated with variable for distro name.
refractainstaller-base (9.1.0) unstable; urgency=low
* (refractainstaller)
* updated tests for special characters in hostname (for jessie/sid)
* Changed the way sudo is handled:
* -remove sudoers.d/live
* -remove username from sudoers
* -add user to sudo group if sudo is desired
*
* (change-username)
* change-username does nothing with sudo.
* other options for sudo are in the installer script.
*
* (loc-timezn.sh)
* Fixed bug that checked all locales if no default set.
* Fixed duplicate run problem with dpkg-reconfigure.
refractainstaller-gui (9.1.0) unstable; urgency=low
* updated tests for special characters in hostname (for jessie/sid)
* Changed the way sudo is handled:
* -remove sudoers.d/live
* -remove username from sudoers
* -add user to sudo group if sudo is desired
* Added graphical entry for passwords and cryptsetup passphrase.
* Increased height of some zenity windows.
* If live-tools is not installed, use stock update-initramfs.
* Commented-out old lines for update-initramfs.[distrib|debian]
Fri Mar 28, 2014 3:08 pm
Sun Mar 30, 2014 7:50 pm
Mon Mar 31, 2014 1:45 am
Enter new UNIX password: Retype new UNIX password: passwd: Authentication token manipulation error
passwd: password unchanged
Enter new UNIX password: Retype new UNIX password: passwd: Authentication token manipulation error
passwd: password unchanged
Mon Mar 31, 2014 8:20 am
Mon Mar 31, 2014 10:26 am
echo $newpass | chroot /target passwd
echo $newpass | chroot /target passwd "$newname"
chroot /target /bin/bash -c "echo -e \"$newpass\n$newpass\n\" | passwd $newusername"
chroot /target /bin/bash -c "echo -e \"$newpass\n$newpass\n\" | passwd root"
Mon Mar 31, 2014 5:39 pm
Mon Mar 31, 2014 5:50 pm
Mon Mar 31, 2014 8:15 pm
Thu Apr 10, 2014 2:49 pm
newpass=$(echo "$entry" | sed 's/@_@/\n/g')
#newpass=$(echo $entry | awk -F"@_@" '{print $1}')
if [[ -n "$newpass" ]] ; then
#echo $newpass | chroot /target passwd "$newname"
chroot /target /bin/bash -c "echo -e $newpass | passwd $newname"
if [ $(echo $entry | awk -F"@_@" '{print $1}') != $(echo $entry | awk -F"@_@" '{print $2}') ] ; then
if [[ $(echo $entry | awk -F"@_@" '{print $1}') != $(echo $entry | awk -F"@_@" '{print $2}') ]] ; then