winbindd_privileged permission issue
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
samba (Ubuntu) |
Triaged
|
Medium
|
Unassigned |
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/
I'm using this workaroud
cat /etc/init.
#!/bin/sh
#set -x
WINBINDD_
chmodgrp() {
chgrp proxy $WINBINDD_
}
case "$1" in
start)
chmodgrp
;;
restart|
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
Snip from init script in gutsy:
case "$1" in
log_daemon_ msg "Starting the Winbind daemon" "winbind"
start)
;;
Does that solve the problem? Instead of proxy, we are using winbindd_priv group. On setting up, you should just add proxy user to winbindd_priv group.