feat: add rundeck

- add puppet-rundeck module
- add rundeck role
This commit is contained in:
Ben Vincent 2024-07-27 00:52:51 +10:00
parent 76989e45c4
commit 08241692ee
3 changed files with 12 additions and 0 deletions

View File

@ -39,6 +39,7 @@ mod 'puppet-network', '2.2.0'
mod 'puppet-kmod', '4.0.1'
mod 'puppet-filemapper', '4.0.0'
mod 'puppet-letsencrypt', '11.0.0'
mod 'puppet-rundeck', '9.1.0'
# other
mod 'ghoneycutt-puppet', '3.3.0'

View File

@ -0,0 +1 @@
---

View File

@ -0,0 +1,10 @@
# a role to deploy rundeck
class roles::infra::automation::rundeck {
if $facts['firstrun'] {
include profiles::defaults
include profiles::firstrun::init
}else{
include profiles::defaults
include profiles::base
}
}