Welcome to mirror list, hosted at ThFree Co, Russian Federation.

setup_droplet.sh - github.com/twbs/gruntworker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 52c30862c95aedcb847d5fce39587c53154f7e53 (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
#!/bin/bash
# Step 0.0: Put SSH keys in ./ssh
# Step 0.1: Checkout git repo to /opt/gruntworker/git-repo

set -e -x

# set to Pacific Time (for @cvrebert)
# ln -sf /usr/share/zoneinfo/America/Los_Angeles /etc/localtime

# remove useless crap
aptitude remove wpasupplicant wireless-tools
aptitude remove pppconfig pppoeconf ppp

# setup firewall
ufw default allow outgoing
ufw default deny incoming
ufw allow ssh
ufw allow www # not necessary for gruntworker itself
ufw enable
ufw status verbose

# setup Docker; written against Docker v1.2.0
docker rmi gruntworker
docker build --tag gruntworker . 2>&1 | tee docker.build.log
cp ./gruntworker.crontab /etc/cron.d/gruntworker
restart cron # until upstart goes away