forked from ghoneycutt/learnpuppet-intro-vagrant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap.sh
executable file
·124 lines (98 loc) · 3.39 KB
/
bootstrap.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#!/bin/bash
# install EPEL
wget http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm -O /root/epel-release-6-8.noarch.rpm
rpm -vhi /root/epel-release-6-8.noarch.rpm
sed -i /etc/yum.repos.d/epel.repo -e 's/https:/http:/'
# install some software
yum -y install ruby-devel redhat-lsb puppet-server
# seed site.pp
cat << EOF > /etc/puppet/manifests/site.pp
# Define filebucket 'main':
filebucket { 'main':
server => 'puppet.learnpuppet.net',
path => false,
}
# Ignoring version control artifacts
File {
backup => 'main',
ignore => [ '.svn',
'.git',
'CVS',
'.bzr' ],
}
if versioncmp($::puppetversion,'3.6.1') >= 0 {
\$allow_virtual_packages = hiera('allow_virtual_packages',false)
Package {
allow_virtual => \$allow_virtual_packages,
}
}
EOF
# handle environments
mkdir /etc/puppet/environments/production
ln -s /etc/puppet/manifests /etc/puppet/environments/production/manifests
ln -s /etc/puppet/modules /etc/puppet/environments/production/modules
# Handle an error with Puppet
# https://tickets.puppetlabs.com/browse/PUP-3324
mkdir -p /etc/puppet/modules/PUP3324/facts.d
# install some gems
gem install -V puppet-lint puppetlabs_spec_helper rake rspec-puppet librarian-puppet-simple r10k --no-ri --no-rdoc
# install puppet skeleton
cd ~
git clone https://github.com/ghoneycutt/puppet-module-skeleton
mkdir -p `puppet config print vardir`/puppet-module/skeleton/
rsync -avp --exclude .git puppet-module-skeleton/ `puppet config print vardir`/puppet-module/skeleton/
# setup puppet.conf
cat << EOF > /etc/puppet/puppet.conf
[main]
# The Puppet log directory.
# The default value is '\$vardir/log'.
logdir = /var/log/puppet
# Where Puppet PID files are kept.
# The default value is '\$vardir/run'.
rundir = /var/run/puppet
# Where SSL certificates are kept.
# The default value is '\$confdir/ssl'.
ssldir = \$vardir/ssl
# there can be only one
ca = true
# autosign certs
autosign = true
# alternative names on the cert (SAN's)
dns_alt_names = puppet.learnpuppet.net,puppet
# module lookup order
# 1st - modules per environment with r10k (environmentpath)
# 2nd - modules from Garrett Honeycutt (basemodulepath)
environmentpath = /etc/puppet/environments
basemodulepath = /var/local/ghoneycutt-modules/modules
# allow for structured facts
stringify_facts = false
[agent]
# The file in which puppetd stores a list of the classes
# associated with the retrieved configuratiion. Can be loaded in
# the separate ``puppet`` executable using the ``--loadclasses``
# option.
# The default value is '\$confdir/classes.txt'.
classfile = \$vardir/classes.txt
# Where puppetd caches the local configuration. An
# extension indicating the cache format is added automatically.
# The default value is '\$confdir/localconfig'.
localconfig = \$vardir/localconfig
server = puppet.learnpuppet.net
ca_server = puppet.learnpuppet.net
report = true
graph = true
pluginsync = true
[master]
# storeconfigs_backend = puppetdb
# storeconfigs = true
reports = store
ignorecache = true
EOF
# install puppet modules
git clone https://github.com/ghoneycutt/puppet-modules.git /var/local/ghoneycutt-modules
# update modules
cd /var/local/ghoneycutt-modules
git pull
./update_puppet_modules.sh https
# update system
yum -y update