Displaying 2 results from an estimated 2 matches for "secretstuff".
2007 Aug 16
0
No subject
...those filesystems with puppet
(nor do I want to), but I would like those filesystems to appear in the
fstab and be available as a pre-requisite for various other file types.
I would like to be able to do something like this:
mount { "/crypt":
ensure => exists;
}
file { "/crypt/secretstuff":
ensure => directory,
require => Mount["/crypt"];
}
if /crypt is mounted then the file type requirement is satisfied and it
will do its things, if its not mounted then the pre-requirement
dependency fails.
Is there a way to do this that I am overlooking, or does the mount...
2007 Dec 07
3
mount type ensure behavior
...ose filesystems with puppet
(nor do I want to), but I would like those filesystems to appear in the
fstab and be available as a pre-requisite for various other file types.
I would like to be able to do something like this:
mount { "/crypt":
ensure => exists;
}
file { "/crypt/secretstuff":
ensure => directory,
require => Mount["/crypt"];
}
if /crypt is mounted then the file type requirement is satisfied and it
will do its things, if its not mounted then the pre-requirement
dependency fails.
Is there a way to do this that I am overlooking, or does the moun...