Mikael Olsson wrote: >> Does anyone now how to prevent windoze users from changing password from >> the client. All clients are in the domain. >> I have read in the list that many others having problem with the >> opposite, the problem is that i dont know what parameter i should change.
Andrew Bartlett wrote: > Quick hack - set a 'unix password sync' program that doesn't match the > chat, or doesn't even exist. > > We don't yet have the ability to prevent password changes on a > per-account basis. > My tipp, a password sync application, what first checks the username, and if the user isn't allowed to change, simly exit, otherwise run unix passwd command...... smb.conf: passwd program = /sbin/mypasswd %u --------------/sbin/mypasswd---------------------------- #!/bin/sh # # user guest may not change his password # if test "$1" == "guest"; then exit fi passwd $1 ----------------------------------------------------------- Greetings Jens -- To unsubscribe from this list go to the following URL and read the instructions: http://lists.samba.org/mailman/listinfo/samba
