summaryrefslogtreecommitdiffstats
path: root/puppet/modules/registry/manifests/init.pp
blob: 248151081cba933e0375782353e47c95300bda79 (plain)
1
2
3
4
5
6
7
8
9
# resources and variables shared among registry defined types
class registry {
    $script = "C:\\qtqa\\bin\\qtqa-reg.pl"
    file { $script:
        ensure => present,
        source => "puppet:///modules/registry/qtqa-reg.pl",
        mode => 0755
    }
}