Report abuse

1
2
3
4
5
6
7
8
9
10
-(0)> cat /etc/puppet/modules/staging/test/manifests/init.pp
class export_file {
        @@file { "/var/lib/puppet/test_file" :
                content => "$fqdn" ,
                tag => "xxx"  ,
                ensure => present ,
        }
        @@file { "/tmp/export.$fqdn": content => "$fqdn.exported"  , tag => "xxx" , ensure => present , }
        @@sshkey { $hostname: type => dsa , key => $sshdsakey }
}