On Mon, Aug 22, 2011 at 11:19 AM, jcbollinger <john.bollin...@stjude.org>wrote:

>
>
> On Aug 21, 2:56 pm, Brian Troutwine <br...@troutwine.us> wrote:
> > Hello, all.
> >
> > I have a box that I'd like to have striping swap spaces. I attempted:
> >
> >   mount { 'swap':
> >     alias   => 'swap0',
> >     atboot => true,
> >     device => '/dev/xvdo',
> >     ensure => 'mounted',
> >     options=> 'defaults',
> >     fstype => 'swap',
> >   }
> >   mount { 'swap':
> >     alias   => 'swap1',
> >     atboot => true,
> >     device => '/dev/xvdp',
> >     ensure => 'mounted',
> >     options=> 'defaults',
> >     fstype => 'swap',
> >   }
> >
> > and
> >
> >   mount { 'swap0':
> >     name  => 'swap',
> >     atboot => true,
> >     device => '/dev/xvdo',
> >     ensure => 'mounted',
> >     options=> 'defaults',
> >     fstype => 'swap',
> >   }
> >   mount { 'swap1':
> >     name  => 'swap',
> >     atboot => true,
> >     device => '/dev/xvdp',
> >     ensure => 'mounted',
> >     options=> 'defaults',
> >     fstype => 'swap',
> >   }
> >
> > to predictable result. Problem is that mount conflates the name of the
> > resource with it's mount path; I'm defining the same thing two ways each
> > time. I _could_ write out my own fstab as a file resource, but that
> somewhat
> > defeats the purpose of even having a mount type. Am I missing something?
> Is
> > it possible to have multiple swap spaces with puppet?
>
>
> I'm guessing that this is not supported, but here's a long shot: try
> altering your second variation to use the 'path' property instead of
> 'name' (even though the docs say it's deprecated).  Even if that
> works, I recommend filing a ticket: I see no inherent reason why
> Puppet shouldn't be able to handle this.
>
>
No joy, I'm afraid. To the best of my understanding from the source the
'mount' type is keyed entirely on the mount point. I'll take out a bug as
time allows, but I'm not entirely sure how to phrase it. It's rather less a
bug than it is that a fundamental assumption of one of puppet's core types
does not hold.


>
> John
>
> --
> 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.
>
>


-- 
Brian L. Troutwine

-- 
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