makefile: fix typos and minor errors
[eostre.git] / dbd-autobuild / Makefile
... / ...
CommitLineData
1DATE:=`date --iso-8601`
2
3# make sure perms are right, gets called at the end of many routines
4chown-www:
5 chown -R www-data:www-data /var/www
6
7# recipes for installing this thing onto a "real" (non-chroot) system
8# this is enough to get us to a functional Drupal install page
9# to go further, use the install-from-backups recipe
10setup-real-system: probe-files install-pkgs install-drupal do-mysql chown-www
11
12# test that we have /install-{drupal-toolchain,packages}.sh /pkgs /sqldefaults and /do-mysql-sh
13# if we don't have all of these files, BAD THINGS may happen
14probe-files:
15 [ -f /install-packages.sh ]
16 [ -f /pkgs ]
17 [ -f /install-drupal-toolchain.sh ]
18 [ -f /do-mysql.sh ]
19 [ -f /sqldefaults ]
20
21install-drupal:
22 chmod +x /install-drupal-toolchain.sh
23 /install-drupal-toolchain.sh
24
25install-pkgs:
26 chmod +x /install-packages.sh
27 /install-packages.sh
28
29do-mysql:
30 chmod +x /do-mysql.sh
31 /do-mysql.sh
32 # secure these two files because they contain passwords in plaintext
33 chmod og-rwx /do-mysql.sh
34 chmod 0600 /sqldefaults
35
36# recipes to restore the site from a backup
37install-from-backups: probe-backup-files install-sqldump install-drupal-sites chown-www
38
39probe-backup-files:
40 [ -f /sqldump ]
41 [ -d /sites ]
42# [ -f /boycottsony.org.conf ]
43# [ -f /dayagainstdrm.org.conf ]
44# [ -f /rotten-apple.org.conf ]
45# [ -f /defectivebydesign.org.conf ]
46
47install-sqldump:
48 # source the dump twice - once to create the DB, once to populate it
49 mysql -u root -p -e 'source /sqldump; use dbd_drupal; source /sqldump;'
50
51install-drupal-sites:
52 cd /var/www/html
53 cp -r /sites sites
54
55#install-apache-sites-conf:
56# cp /*.conf /etc/apache2/sites-available/
57# a2ensite boycottsony.org
58# a2ensite dayagainstdrm.org
59# a2ensite rotten-apple.org
60# a2ensite www.defectivebydesign.org
61# systemctl reload apache2
62
63# recipes for building a chroot. notice that sql does not cooperate with chroots, due to some funky postinstall hooks and /proc namespaces conflicting
64build-chroot: new-chroot install-pkgs-in-chroot install-drupal-toolchain
65
66new-chroot:
67 rm -rf tristrap
68 mkdir tristrap
69 debootstrap --merged-usr etiona ./tristrap/ http://mirror.fsf.org/trisquel/
70
71install-pkgs-in-chroot:
72 cp files/pkgs tristrap
73 cp files/install-packages.sh tristrap
74 chmod +x tristrap/install-packages.sh
75 chroot tristrap /install-packages.sh
76
77install-drupal-toolchain:
78 cp files/install-drupal-toolchain.sh tristrap
79 chmod +x tristrap/install-drupal-toolchain.sh
80 chroot tristrap /install-drupal-toolchain.sh