Last active
May 14, 2019 21:40
-
-
Save MikaelSmith/df78f2db579e23ca4bcd37e520c3f08f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
notify {'Hello world': } | |
include rundeck |
This file contains hidden or 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
#!/usr/bin/env bash | |
rpm -Uvh https://yum.puppet.com/puppet5-release-el-7.noarch.rpm | |
yum install -y puppet-agent |
This file contains hidden or 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
mod 'puppetlabs-stdlib' | |
mod 'pltraining-dirtree' | |
mod 'puppetlabs-inifile' | |
mod 'puppet-archive' | |
mod 'puppetlabs-java_ks' | |
mod 'puppet-rundeck' |
This file contains hidden or 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
Vagrant.configure(2) do |config| | |
config.vm.box = "bento/centos-7.4" | |
config.vm.synced_folder File.dirname(__FILE__), "/puppet" | |
config.vm.provision :shell, path: "provision/puppet.sh" | |
config.vm.provision "puppet" do |puppet| | |
puppet.manifests_path = "manifests" | |
puppet.manifest_file = "init.pp" | |
puppet.module_path = "modules" | |
end | |
end |
Using Vagrant 2.2.4 and latest VirtualBox.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ran