feat: Real initial commit

This commit is contained in:
christiangoeschel 2025-03-26 20:31:57 -04:00
parent f6866d56d4
commit ed355f33fe
Signed by: christiangoeschel
GPG Key ID: 9C5DF8B5AF67BFB2
2 changed files with 11 additions and 0 deletions

1
files/genesis.txt Normal file
View File

@ -0,0 +1 @@
In the beginning there was darkness

10
manifests/init.pp Normal file
View File

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