summaryrefslogtreecommitdiffstats
path: root/bootstrap/ubuntu1004_bootstrap.sh
blob: 0ed34c1c689f3b528ef65cbe61572ccc64cd2bb6 (plain)
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
#!/bin/bash

# Bootstrap a clean Ubuntu 10.04 system to be managed by puppet.

REPO="$1"
if [ "x$REPO" = "x" ]; then
    {
        echo "Usage: $(basename $0) git://some/git/repo"
        echo ""
        echo "Set up this machine to be managed using the puppet config in the given"
        echo "git repository (e.g. git://qt.gitorious.org/qtqa/sysadmin.git)"
    } 1>&2
    exit 2
fi

set -e
set -x

if ! test -e /usr/bin/puppet; then
    echo Installing puppet...
    apt-get -y -o DPkg::Options::=--force-confnew install puppet
else
    echo puppet is already installed
fi

if ! test -e /usr/bin/git; then
    echo Installing git...
    apt-get -y -o DPkg::Options::=--force-confnew install git-core
else
    echo git is already installed
fi

if ! test -d /var/qtqa/sysadmin; then
    echo "Grabbing $REPO ..."
    mkdir -p /var/qtqa
    git clone "$REPO" /var/qtqa/sysadmin
fi

echo "Configuring this node..."
/var/qtqa/sysadmin/puppet/nodecfg.pl -interactive

# Run puppet once.
echo "Running puppet..."
/var/qtqa/sysadmin/puppet/sync_and_run.pl
set +x
echo 'All done :-)'