Displaying 2 results from an estimated 2 matches for "some_other_file".
2007 Jun 26
2
NFS, nested ZFS filesystems and ownership
...to figure this one out.
Assuming I have tank/fs, tank/fs/fs1, tank/fs/fs2, and I set sharenfs=on for
tank/fs (child filesystems are inheriting it as well), and I chown
user:group /tank/fs, /tank/fs/fs1 and /tank/fs/fs2, I see:
ls -la /tank/fs
user:group .
user:group fs1
user:group fs2
user:group some_other_file
If I mount server:/tank/fs /tmp/mount from another machine, I see:
ls -la /tmp/mount
user:group .
root:wheel fs1
root:wheel fs2
user:group some_other_file
How can I get user:group to propagate down the nested ZFS filesystem over
NFS?
Thanks,
Marko
-------------- next part --------------
An HTM...
2008 May 27
8
new --pattern option
...re (rspec 1.08).
Now it also loads all other files in current directory and in all
subdirectories and not only from directory and subdirectories given to spec
as a parameter.
So, for example, I have something like this:
.\some_file.rb (which I don''t want to load)
.\some_dir\some_other_dir\some_other_files.rb (I don''t want to load these
also)
.\my_test_dir (has many subdirs and rb files in it - I want to load all .rb
files from THIS dir)
now, I execute rspec like this: spec -p **/*.rb my_test_dir (and having
working directory . of course).
Now I get some errors and things (some of them ne...