Use osfamily rather than operatingsystem.

This commit is contained in:
Steve Traylen 2012-06-08 15:45:32 +02:00
parent dda7f6f7ba
commit 74a58916d5
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ Puppet::Type.type(:nova_config).provide(
:filetype => :flat
) do
confine :operatingsystem => [:debian, :ubuntu]
confine :osfamily => [:debian]
#confine :exists => novaconf
text_line :comment, :match => /^\s*#/;

View File

@ -9,7 +9,7 @@ Puppet::Type.type(:nova_config).provide(
:filetype => :flat
) do
confine :operatingsystem => [:fedora, :redhat, :centos]
confine :osfamily => [:redhat]
#confine :exists => novaconf
text_line :comment, :match => /#|\[.*/;