search for: user_only

Displaying 3 results from an estimated 3 matches for "user_only".

2005 Nov 15
0
NTLM & Kerberos.
Hi all, I'm working with samba 3.0.20a on Suse9.2, with followings files setted: [global] netbios name = NAME wins server = XXX.XXX.XXX.XXX workgroup = DOMAIN realm = DOMAIN.COM security = ADS password server = * encrypt passwords = yes allow trusted domains = Yes winbind use default domain = Yes winbind separator
2011 Nov 23
1
Density over time intervals
Hi, I have recorded online/offline timestamps per user that looks like this: username,online_time,offline_time a,2011-11-01 16:16:56.692572+01,2011-11-01 21:06:16.388903+01 a,2011-11-01 21:07:14.204367+01,2011-11-01 21:34:21.47081+01 a,2011-11-01 21:38:09.501356+01,2011-11-01 21:53:45.272321+01 For each user I want to get a probability distribution over the day, i.d. for each minute of a
2016 Dec 01
3
[PATCH v2 1/2] xattrs: Skip security.evm extended attribute
...refore, we can always skip it. --- xattrs.c | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/xattrs.c b/xattrs.c index b105392..3b72e61 100644 --- a/xattrs.c +++ b/xattrs.c @@ -255,6 +255,9 @@ static int rsync_xal_get(const char *fname, item_list *xalp) if (user_only ? !HAS_PREFIX(name, USER_PREFIX) : HAS_PREFIX(name, SYSTEM_PREFIX)) continue; + + if (!strcmp(name, "security.evm")) + continue; #endif /* No rsync.%FOO attributes are copied w/o 2 -X options. */ @@ -358,6 +361,9 @@ int copy_xattrs(const char *source, const char *de...