feat: Add dummy module

This commit is contained in:
christiangoeschel 2025-03-26 09:58:50 -04:00
parent 1a612d2a89
commit d4d276bf55
2 changed files with 11 additions and 0 deletions

1
files/testmod.txt Normal file
View File

@ -0,0 +1 @@
This is a test

10
manifests/init.pp Normal file
View File

@ -0,0 +1,10 @@
class puppet_module {
file { '/root/testmod.txt':
ensure => present,
owner => 'root',
group => 'root',
mode => '0644',
source => 'puppet:///modules/puppet_module/testmod.txt'
}
}