On Thu, Oct 06, 2011 at 03:00:29PM -0500, Jeffrey Ollie wrote:
> On Thu, Oct 6, 2011 at 12:17 PM, Adam Gibbins <a...@adamgibbins.com> wrote:
> > On 6 October 2011 18:15, Jeffrey Ollie <j...@ocjtech.us> wrote:
> >>
> >> Having this feature would be very useful to me...  Other than doing
> >> the work myself, is there any hope of getting this any time soon?
> >
> > This doesn't really seem the work of a provider, but rather a define.
> > Could you not just wrap a file block and a mount inside a define?
> 
> I think that the problem with that is that you are dealing with two
> different directories that have the same name.  There's the original
> directory that is used as a mount point and then there's the directory
> that is mounted on top of that.   AFAIK puppet can't deal with that
> situation using only a define.

You could create the mountpoint with an exec resource. Like

    define mymount (.....) {
      exec { "create_${name}":
        command => "/bin/mkdir -m 0755 ${name}",
        creates => $name,
      }
      mount { $name:
        ...
        require => Exec["create_${name}"],
      }
    }

You can now use a file resource to set e.g. owner and group on the
mounted path.

-Stefan

Attachment: pgptbHE4L8lh6.pgp
Description: PGP signature

Reply via email to