Displaying 2 results from an estimated 2 matches for "ad_account".
Did you mean:
_account
2011 Sep 12
1
Could not match
...ould not match “samba” at /etc/puppetlabs/puppet/modules/authconfig/
manifests/init.pp:3
I have looked all over and it seems my manifest entry is correct for
samba. What am I missing here? Below is my manifest.
class authconfig {
package {“samba”
ensure => installed;
notify => exec[“ad_account”]
}
exec { “ad_account”:
path => "/usr/bin:/usr/sbin:/bin",
command => “id blah”,
returns => 1,
notify => exec [ “authconfig”]
}
exec { “authconfig” :
path => “/usr/bin:/usr/sbin:/bin”
command => “authconfig –blah –blah”
command => “net ads join -UAdmi...
2010 Dec 07
2
Linux, Windows AD domain, and IDs
...ept to add or remove computers.
Login accounts take the form, for example, initials and a number: se123456
I want my uid to reflect 123456.
I spent about an hour or two playing with various configurations and
options of idmap and winbind. ? Along the way, some testing revealed:
getent passwd my_ad_account returned almost all appropriate values,
but the uid and gid were both 10000, clearly not correct.
wbinfo -n my_ad_account returned my correct sid (I think that was the
wbinfo syntax used. ?In any event, whatever syntax I used for me
returned the correct sid.
So we know the system can see me - I j...