Displaying 2 results from an estimated 2 matches for "sys_us".
Did you mean:
sysbus
2002 Jul 28
1
bug or "feature" ?
I'm not sure if this is normal or not. I run Samba 2.2.5 with LDAP on
RH Linux 7.2.
The thing is, it only works correctly when nscd is running. Otherwise it
can't getpwnam
and fails with no uid error. Interesting thing, there is no such effect
on Debian Linux. Weird...
pdb_ldap.c:
sys_user = sys_getpwnam(username);
if (sys_user == NULL) {
DEBUG (2,("init_sam_from_ldap: User [%s] does not ave a
uid!\n", username))
2011 Nov 29
1
How do I require a resource in a definition based on an array parameter?
I have a define that looks like this:
define user::sys_user($fullname, $uid, $groups, $shell=''/bin/bash'',
$authkey, $authkey_type=rsa) {
$username = "sys_${name}"
group { $username:
gid => $uid,
}
user { $username:
require => Group[$username],...