-
-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Example manifest to demo-install Rundeck on EL7
Simple example for demo purposes howto install Rundeck on EL7 (RedHat, CentOS).
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Simple demo-install of rundeck on EL7 (CentOS, RHEL) | ||
# | ||
# Pre-requisites: | ||
# - Installed modules | ||
# puppet module install puppetlabs-java | ||
# puppet module install puppet-rundeck | ||
# puppet module install crayfishx-firewalld | ||
# - $::fqdn fact needs to be working | ||
# | ||
# After installation: | ||
# - Webinterface on http://${::fqdn}:4440 | ||
# - Login with admin/admin | ||
# | ||
|
||
include ::java | ||
include ::rundeck | ||
include ::firewalld | ||
|
||
firewalld_port { 'Rundeck HTTP port': | ||
ensure => present, | ||
zone => 'public', | ||
port => 4440, | ||
protocol => 'tcp', | ||
} | ||
|
||
Class['java'] -> Class['rundeck'] | ||
|