Skip to content

Commit

Permalink
Merge pull request #242 from vinzent/example_demo_install_on_el7
Browse files Browse the repository at this point in the history
Example manifest to demo-install Rundeck on EL7
  • Loading branch information
alexjfisher authored Jun 18, 2016
2 parents 7819567 + 9fc6fa9 commit 054fff4
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 054fff4

Please sign in to comment.