Displaying 8 results from an estimated 8 matches for "noal".
Did you mean:
goal
2005 Feb 22
4
Winbind - how to map ADS group to Unix group
...am trying to do in using the wheel
group).
I suppose it would be possible to write a script that would enum the ADS
"Domain Admins" group and add the users to the "wheel" group every X
minutes/hours....
Am I missing something? Any thoughts on the best way to do this?
Thanks,
Noal
2007 Jan 15
1
Winbind caching group membership issue
...an log on to the box (by group membership). Pam_listfile is
not "seeing" updated group membership when winbind caching is enabled.
Somewhat ironically pam_winbind.so "sees" things correctly I suppose
because it never consults the cache.
What am I missing? Thanks for the help,
Noal
Some potentially relevant settings from smb.conf include:
idmap backend = idmap_rid:APP=17000000-40000000
winbind enum users = yes
winbind enum groups = yes
idmap uid = 17000000-40000000
idmap gid = 17000000-40000000
winbind use default domain = yes
winbind cache time = 30
2007 Apr 04
1
Issue with pam_winbind for MS AD authentication and moduleoptions
...s login. That's why I was wondering if
there is a "timeout" option or something for pam_winbind to avoid that.
Well, that's my guess I could be wrong and maybe the problem is
something else.
Anyway thank's so far for your help, if you or anyone has a light...
Andre
Miles, Noal wrote:
> You have files before winbind in /etc/nsswitch.conf for passwd, shadow,
> group?
>
> Noal
>
> -----Original Message-----
> From: samba-bounces+noal.miles=tdstelecom.com@lists.samba.org
> [mailto:samba-bounces+noal.miles=tdstelecom.com@lists.samba.org] On
> Behalf...
2007 Feb 06
3
CentOS samba upgrade
Centos samba version is 3.0.10 which is the package that comes with the
disto - is the only way to upgrade to the latest samba 3.0.24 is to
recompile the samba source? I have tried "yum update samba" however it says
3.0.10 is the latest so i downloaded 3.0.24 and tried rpm -Uvh or yum
localinstall but i get the following dependency errors
to # yum install
2007 Feb 06
3
ntuser.dat
What are the implications of locking the ntuser.dat file on the user's
server profile? That is, if I make the ntuser.dat file read-only, what
affects will that have on the client?
2005 Feb 22
0
winbind: how to map Windows groups to existing unix groups; limit windows group to unix groups
Hi,
Did you ever find out how to do this?
Thanks,
Noal
2003 Jan 27
0
Strange error messages
...account required pam_stack.so service=system-auth
session required pam_mkhomedir.so skel=/etc/skel umask=0002
session required pam_stack.so service=system-auth
password required pam_stack.so service=system-auth
--
Fabio Corazza - Prosa s.r.l.
Via Polanzani, 74 - 30033 Noale Venice - Italy
Phone: +39.041.5897009 - e-mail: corazza@prosa.com
2020 Jun 22
4
[PATCH nbdkit 1/2] server: Add .after_fork callback, mainly for plugins to create threads.
...gt; 'a) option;
@@ -114,6 +115,7 @@ let default_callbacks = {
thread_model = None;
get_ready = None;
+ after_fork = None;
preconnect = None;
open_connection = None;
@@ -157,6 +159,7 @@ external set_config_help : string -> unit = "ocaml_nbdkit_set_config_help" "noal
external set_thread_model : (unit -> thread_model) -> unit = "ocaml_nbdkit_set_thread_model"
external set_get_ready : (unit -> unit) -> unit = "ocaml_nbdkit_set_get_ready"
+external set_after_fork : (unit -> unit) -> unit = "ocaml_nbdkit_set_after_fork...