When the user does not have the same name group, the script pipelight-mkufs does not correctly work out super-block backups (for fsck_ffs -b #) at: 192, 205056, 409920, 614784 chown: andrey: illegal group name ZVOL created and mounted to: /home/andrey/.wine-pipelight # groups andrey wheel operator _pkcs11 Hotfix --- emulators/pipelight/files/pipelight-mkufs.in 2014-10-24 01:20:15.503045748 +0400 +++ emulators/pipelight/files/pipelight-mkufs.in 2014-12-14 15:07:57.049832379 +0300 @@ -85,8 +85,11 @@ exit 1 fi +# Get user group +usergroup=`groups $username | cut -d " " -f 1` + # Chown the directory -chown $username:$username ${userhome}/.wine-pipelight +chown $username:$usergroup ${userhome}/.wine-pipelight # Save to fstab echo "/dev/zvol/$zpool/$username-pipelight ${userhome}/.wine-pipelight ufs rw,late 0 0" >> /etc/fstab
Auto-assigned to maintainer kmoore@FreeBSD.org
A commit references this bug: Author: kmoore Date: Mon Dec 15 17:00:24 UTC 2014 New revision: 374755 URL: https://svnweb.freebsd.org/changeset/ports/374755 Log: - Fix a bug in pipelight-mkufs script - Bump PORTREV PR: 195963 Submitted by: f0andrey@gmail.com Changes: head/emulators/pipelight/Makefile head/emulators/pipelight/files/pipelight-mkufs.in