Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Example manifest to demo-install Rundeck on EL7 #242

Merged
merged 1 commit into from
Jun 18, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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']