Skip to content

Commit

Permalink
Example manifest to demo-install Rundeck on EL7
Browse files Browse the repository at this point in the history
Simple example for demo purposes howto install Rundeck
on EL7 (RedHat, CentOS).
  • Loading branch information
vinzent committed Jun 18, 2016
1 parent 7819567 commit 9fc6fa9
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions examples/demo_install_el7.pp
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']

0 comments on commit 9fc6fa9

Please sign in to comment.