1c66ee26 |
1 | DATE:=`date --iso-8601` |
2 | |
cb4c42ad |
3 | # make sure perms are right, gets called at the end of many routines |
4 | chown-www: |
5 | chown -R www-data:www-data /var/www |
6 | |
1c66ee26 |
7 | # recipes for installing this thing onto a "real" (non-chroot) system |
4151bec2 |
8 | # this is enough to get us to a functional Drupal install page |
9 | # to go further, use the install-from-backups recipe |
cb4c42ad |
10 | setup-real-system: probe-files install-pkgs install-drupal do-mysql chown-www |
1c66ee26 |
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 |
14 | probe-files: |
15 | [ -f /install-packages.sh ] |
16 | [ -f /pkgs ] |
17 | [ -f /install-drupal-toolchain.sh ] |
18 | [ -f /do-mysql.sh ] |
19 | [ -f /sqldefaults ] |
20 | |
21 | install-drupal: |
22 | chmod +x /install-drupal-toolchain.sh |
23 | /install-drupal-toolchain.sh |
24 | |
25 | install-pkgs: |
26 | chmod +x /install-packages.sh |
27 | /install-packages.sh |
28 | |
29 | do-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 | |
cb4c42ad |
36 | # recipes to restore the site from a backup |
37 | install-from-backups: probe-backup-files install-sqldump install-drupal-sites chown-www |
38 | |
39 | probe-backup-files: |
40 | [ -f /sqldump ] |
4151bec2 |
41 | [ -d /sites ] |
3337dee2 |
42 | # [ -f /boycottsony.org.conf ] |
43 | # [ -f /dayagainstdrm.org.conf ] |
44 | # [ -f /rotten-apple.org.conf ] |
45 | # [ -f /defectivebydesign.org.conf ] |
cb4c42ad |
46 | |
47 | install-sqldump: |
48 | # source the dump twice - once to create the DB, once to populate it |
4151bec2 |
49 | mysql -u root -p -e 'source /sqldump; use dbd_drupal; source /sqldump;' |
cb4c42ad |
50 | |
51 | install-drupal-sites: |
52 | cd /var/www/html |
53 | cp -r /sites sites |
54 | |
3337dee2 |
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 | |
1c66ee26 |
63 | # recipes for building a chroot. notice that sql does not cooperate with chroots, due to some funky postinstall hooks and /proc namespaces conflicting |
64 | build-chroot: new-chroot install-pkgs-in-chroot install-drupal-toolchain |
65 | |
66 | new-chroot: |
67 | rm -rf tristrap |
68 | mkdir tristrap |
69 | debootstrap --merged-usr etiona ./tristrap/ http://mirror.fsf.org/trisquel/ |
70 | |
71 | install-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 | |
77 | install-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 |