[Bug 64425] Re: winbindd_privileged permission issue
Thomas C.
64425 at bugs.launchpad.net
Thu Mar 20 08:57:35 UTC 2014
ok, this one is the right solution:
gpasswd -a proxy winbindd_priv
--
You received this bug notification because you are a member of Ubuntu
Foundations Bugs, which is subscribed to samba in Ubuntu.
https://bugs.launchpad.net/bugs/64425
Title:
winbindd_privileged permission issue
Status in “samba” package in Ubuntu:
Triaged
Bug description:
Binary package hint: winbind
I configured squid to use ntlm_auth to authenticate users against a
Windows domain. To do this, the group ownership for directory
/var/run/samba/winbindd_privileged needs to be changed from "root" to
"proxy". No problem there, but of course 6.06 uses the varrun
temporary filesystem to mount /var/run, so upon reboot the changes to
the group ownership are lost.
I'm using this workaroud
cat /etc/init.d/winbind.sh
#!/bin/sh
#set -x
WINBINDD_PRIVILEGED=/var/run/samba/winbindd_privileged
chmodgrp() {
chgrp proxy $WINBINDD_PRIVILEGED || return 1
}
case "$1" in
start)
chmodgrp
;;
restart|reload|force-reload)
echo "Error: argument '$1' not supported" >&2
exit 3
;;
stop)
;;
*)
echo "Usage: $0 start|stop" >&2
exit 3
;;
esac
#EOF
update-rc.d winbind.sh start 21 2 3 4 5 .
can ubuntu team fix this issue?
thanks
Nicola
To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/64425/+subscriptions
More information about the foundations-bugs
mailing list