Sorry, i put ONLY the code here:

custom_functions.pp:
...
define superservice ( $initscript, $filecontrol ) {
$modelo = modelo_suscribe("$filecontrol")
package { $title: ensure => installed }
service { $initscript:
                ensure => true,
                enable => true,
                subscribe => [$modelo]
                }
}
....

modelo_suscribe.rb:

module Puppet::Parser::Functions
newfunction(:modelo_suscribe, :type => :rvalue) do |args|
        cadena = args[0]
        array = cadena.split(",")
        str=""
        array.each do |element|
                str_tmp = " File[\"#{element}\"],"
                str = str + str_tmp
        end
        str = str.chomp(",")
        return str
end
end

apache2.pp:

class apache2 inherits base {
....
superfile { "/etc/apache2/sites-available/ssl":
                service => apache2
             }

        superfile { "/etc/apache2/apache.pem":
                mode => "600",
                service => apache2
             }

        superfile { "/etc/apache2/sites-available/default":
                service => apache2
             }

        superfile { "/etc/apache2/ports.conf":
                service => apache2
             }

        superservice { apache2:
                initscript => "apache2",
                filecontrol => "/etc/apache2/sites-available/ssl,/etc/
apache2/apache.pem,/etc/apache2/sites-available/default,/etc/apache2/
ports.conf"
                }
}

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-us...@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