Hi,

I'm still quite new to puppet so forgive me if I ask stupid questions or use wrong terminology.

I have default values for mount defined inside a class. Are these defaults only valid for mounts of this class or for all?

class test {

    Mount {
        fstype => "nfs4",
    }
    mount{"test1":
        device => "server1:/test",
    }
}

Since I also have many nfsmounts and want to make sure that the mountpoint exist, I'd like to use require. Is there a way I can reference the name of the mountpoint in the require? Like so.

mount {"test2":
        device => "server1:/test2",
        require => File[$name]
      }


regards, Andreas

--
You received this message because you are subscribed to the Google Groups "Puppet 
Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to