Is there a way to control the order of the mounts? We have a few second level directories in /a that need to mount after / a is mounted but it appears that /a is being mounted after /a/1 and /a/ 2. If I do a manual mount -a everything is accessible. Thanks, Ed -- 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+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
ed-rfmd writes: > Is there a way to control the order of the mounts? > We have a few second level directories in /a that need to mount after / > a is mounted but it appears that /a is being mounted after /a/1 and /a/ > 2. If I do a manual mount -a everything is accessible. Sounds like you need some requires. mount { "/a": } mount { "/a/1": require => Mount["/a"], } mount { "/a/2": require => Mount["/a"], } -- 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+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 04/13/2010 10:08 PM, ed-rfmd wrote:> Is there a way to control the order of the mounts? > We have a few second level directories in /a that need to mount after / > a is mounted but it appears that /a is being mounted after /a/1 and /a/ > 2. If I do a manual mount -a everything is accessible.by using require, before? cheers pete -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAkvE2sMACgkQbwltcAfKi38sKgCfXzec6UrlSXxo063RVOVPrAss Av8AoKoUqiFQM8+PIEvg6Ev+C7yXZxQ8 =GE1r -----END PGP SIGNATURE----- -- 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+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
Thank You. I''m just getting started with puppet and this will be a great help. Ed On Apr 13, 4:57 pm, Peter Meier <peter.me...@immerda.ch> wrote:> -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On 04/13/2010 10:08 PM, ed-rfmd wrote: > > > Is there a way to control the order of the mounts? > > We have a few second level directories in /a that need tomountafter / > > a is mounted but it appears that /a is being mounted after /a/1 and /a/ > > 2. If I do a manualmount-a everything is accessible. > > by using require, before? > > cheers pete > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.9 (GNU/Linux) > Comment: Using GnuPG with Mozilla -http://enigmail.mozdev.org/ > > iEYEARECAAYFAkvE2sMACgkQbwltcAfKi38sKgCfXzec6UrlSXxo063RVOVPrAss > Av8AoKoUqiFQM8+PIEvg6Ev+C7yXZxQ8 > =GE1r > -----END PGP SIGNATURE------- 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+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.