summaryrefslogtreecommitdiff
path: root/bins/trove-early-setup
blob: 0971118e2f64e92b7d0024cc64209ec32a7077ac (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
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
#!/usr/bin/make -f
# -*- Make -*-

all: substitutions-done gitano-configured lorry-configured cache-configured

USERS := git lorry cache

substitutions-done: /etc/trove-setup.sed hostname-not-baserock
	sed -f /etc/trove-setup.sed -i \
               /usr/share/gitano/skel/gitano-admin/*/*.lace \
               /usr/share/gitano/skel/gitano-admin/*/*.lua \
               /usr/share/gitano/skel/users/*/user.conf \
	       /etc/cgitrc /etc/gitano-setup.clod /etc/lorry.conf

/etc/trove-setup.sed:
	@echo "You need to create $@ to continue."
	@echo "There is $@.example which you can work from."
	@echo "re-run trove-early-setup once you're done with this."
	@exit 1

.PHONY: hostname-not-baserock
hostname-not-baserock:
	test "x$$(hostname)" != "baserock"

# $1 == username to make
define make_user_rules

/home/$1/.created:
	adduser -g "Trove $1 service" -s /bin/bash -D $1
	su -c 'mkdir .ssh; chmod 750 .ssh' - $1
	su -c 'ssh-keygen -t rsa -N "" -q -f .ssh/id_rsa' - $1
	(cat /etc/ssh/ssh_host_*_key.pub | cut -d\  -f1,2 | \
	 sed -e's/^/'$(shell hostname)',localhost /' > \
	 /home/$1/.ssh/known_hosts)
	chown $1:$1 /home/$1/.ssh/known_hosts
	chmod 600 /home/$1/.ssh/known_hosts
	touch $$@

ALL_USER_TARGETS := $$(ALL_USER_TARGETS) /home/$1/.created

endef

$(eval $(foreach USER,$(USERS),$(call make_user_rules,$(USER))))

gitano-setup: /home/git/.gitano-setup
/home/git/.gitano-setup: $(ALL_USER_TARGETS)
	su -c 'gitano-setup /etc/gitano-setup.clod' - git
	passwd -u git
	touch $@

gitano-lorry-setup: /home/git/.gitano-lorry-setup
/home/git/.gitano-lorry-setup: gitano-setup
	cp /home/lorry/.ssh/id_rsa.pub /tmp/lorry.pub
	su -c 'ssh git@localhost as lorry sshkey add trove < /tmp/lorry.pub' - git
	rm /tmp/lorry.pub

gitano-configured: gitano-lorry-setup

lorry-setup: /home/lorry/.lorry-setup
/home/lorry/.lorry-setup: $(ALL_USER_TARGETS)
	su -c 'mkdir /home/lorry/bundles /home/lorry/tarballs' - lorry
	touch $@

lorry-configured: lorry-setup

cache-setup: /home/cache/.cache-setup
/home/cache/.cache-setup: $(ALL_USER_TARGETS)
	su -c 'mkdir /home/cache/artifacts' - cache
	touch $@

cache-configured: cache-setup