Displaying 2 results from an estimated 2 matches for "pre500".
Did you mean:
pr1500
2012 May 24
0
Lots of NT_STATUS_OBJECT_NAME_COLLISION errors, harmless?
...d). Clients are running Windows 7 (x86_64)
and the server is running Debian Squeeze with samba 3.5.6. For now I'm
just using tdmsam as the passwd backend.
The problem I have is that I see lots of errors involving
NT_STATUS_OBJECT_NAME_COLLISION, here's an example at login time for
user pre500 with roaming profiles enabled:
[2012/05/24 15:36:15.038884, 3] smbd/dosmode.c:166(unix_mode)
unix_mode(pre500.V2) returning 0700
[2012/05/24 15:36:15.038902, 2] smbd/open.c:2505(open_directory)
open_directory: unable to create pre500.V2. Error was
NT_STATUS_OBJECT_NAME_COLLISION
[2012/05/...
2010 Feb 22
6
Augeas type: Removing an entry from /etc/hosts
...hosts file like this:
127.0.1.1 hostname
We would like to remove these lines. Now I know this can be done with a
simple exec of sed but if possible I would like to use it as a good test
exercise with Augeas. Now, it''s pretty easy to do this with augtool, as
follows:
root@miscreant:/home/pre500# augtool
augtool> match /files/etc/hosts/*/ipaddr 127.0.1.1
/files/etc/hosts/4/ipaddr
augtool> rm /files/etc/hosts/4
rm : /files/etc/hosts/4 3
augtool> save
Saved 1 file(s)
But I can''t see how this would translate to work in Puppet as I need to
match the relevant path before I ca...