search for: passsd

Displaying 2 results from an estimated 2 matches for "passsd".

Did you mean: passed
2005 Aug 01
2
samba-3.0.20rc1 winbind Windows 2003 SP1 ADS wbinfo all fine, but getent passsd or group does not work...
Hi, I've joined a Suse 9.1 Pro linux computer to a Windows 2003 SP1 ADS using: # kinit Administrator@DOMAIN # net ads join The computer account is created on the DC and wbinfo (-t -u -g) all work. Then I try getent passwd or getent group and nothing. This is with: #grep winbind /etc/nsswitch.conf passwd: compat winbind group: compat winbind # ps -ef | grep -E
2007 Oct 20
1
Getting at what a named object represents in a function...
...in that list (excuse terminology if it's wrong/ambiguous). Imagine its like this (actual values are unimportant) and called mylist: >mylist A B 1 5 2 5 3 6 4 8 5 0 I have a function: foo = function(param){ #modify list A or B values depending on whether A or B's passsd in (via 'param') param[someindex]=another_value #doesn't change value in lits$A or list$B (whichever's been passed in as 'param') #I want something like: #if 'param' is list$A then list$A[someindex]=another_value #else if 'param' is list$B then list$B[...