This repository has been archived by the owner on Jan 25, 2018. It is now read-only.
forked from hashicorp/puppet-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mac_os_x_10_8.sh
executable file
·56 lines (47 loc) · 1.9 KB
/
mac_os_x_10_8.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
#!/usr/bin/env bash
#
# This bootstraps Puppet on Mac OS X 10.8.
#
# Optional environmental variables:
# - FACTER_PACKAGE_URL: The URL to the Facter package to install.
# - PUPPET_PACKAGE_URL: The URL to the Puppet package to install.
#
set -e
#--------------------------------------------------------------------
# Modifiable variables, please set them via environmental variables.
#--------------------------------------------------------------------
FACTER_PACKAGE_URL=${FACTER_PACKAGE_URL:-"http://downloads.puppetlabs.com/mac/facter-1.6.16.dmg"}
PUPPET_PACKAGE_URL=${PUPPET_PACKAGE_URL:-"http://puppetlabs.com/downloads/mac/puppet-3.0.1.dmg"}
#--------------------------------------------------------------------
# NO TUNABLES BELOW THIS POINT.
#--------------------------------------------------------------------
if [ "$EUID" -ne "0" ]; then
echo "This script must be run as root." >&2
exit 1
fi
# This function will download a DMG from a URL, mount it, find
# the `pkg` in it, install that pkg, and unmount the package.
function install_dmg() {
local name="$1"
local url="$2"
local dmg_path=$(mktemp -t ${name}-dmg)
echo "Installing: ${name}"
# Download the package into the temporary directory
echo "-- Downloading DMG..."
curl -L -o ${dmg_path} ${url} 2>/dev/null
# Mount it
echo "-- Mounting DMG..."
local plist_path=$(mktemp -t puppet-bootstrap)
hdiutil attach -plist ${dmg_path} > ${plist_path}
mount_point=$(grep -E -o -i '/Volumes/[-.a-z0-9]+' ${plist_path})
# Install. It will be the only pkg in there, so just find any pkg
echo "-- Installing pkg..."
pkg_path=$(find ${mount_point} -name '*.pkg' -mindepth 1 -maxdepth 1)
installer -pkg ${pkg_path} -target / >/dev/null
# Unmount
echo "-- Unmounting and ejecting DMG..."
hdiutil eject ${mount_point} >/dev/null
}
# Install Puppet and Facter
install_dmg "Puppet" ${PUPPET_PACKAGE_URL}
install_dmg "Facter" ${FACTER_PACKAGE_URL}