-
Notifications
You must be signed in to change notification settings - Fork 186
/
mac_os_x.sh
executable file
·63 lines (51 loc) · 2.3 KB
/
mac_os_x.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
#!/usr/bin/env bash
#
# This bootstraps Puppet on Mac OS X 10.9 - 10.12 && is depecrated for 10.7/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
OSX_VERSION=$(sw_vers | grep -i productversion| awk '{print $2}' | cut -f1,2 -d'.')
#--------------------------------------------------------------------
# Modifiable variables, please set them via environmental variables.
#--------------------------------------------------------------------
FACTER_PACKAGE_URL=${FACTER_PACKAGE_URL:-"http://downloads.puppetlabs.com/mac/facter-latest.dmg"}
PUPPET_PACKAGE_URL=${PUPPET_PACKAGE_URL:-"http://downloads.puppetlabs.com/mac/$OSX_VERSION/PC1/x86_64/puppet-agent-1.10.4-1.osx$OSX_VERSION.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 '/Volumes/[-.a-zA-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}"
# Hide all users from the loginwindow with uid below 500, which will include the puppet user
defaults write /Library/Preferences/com.apple.loginwindow Hide500Users -bool YES
echo "finished installing puppet..."