long overdue commit: have composer test if its already installed
[eostre.git] / drupal-automake-generic / Makefile
CommitLineData
8b2413e8 1DATE:=`date --iso-8601`
2
3# no-op by default
4default:
5 true
6
7# make sure perms are right, gets called at the end of many routines
8chown-www:
9 chown -R www-data:www-data /var/www
10
11# recipes for installing this thing onto a "real" (non-chroot) system
12# this is enough to get us to a functional Drupal install page
13# to go further, use the install-from-backups recipe
14setup-real-system: probe-files install-pkgs install-drupal do-mysql chown-www
15
16# test that we have /install-{drupal-toolchain,packages}.sh /pkgs /sqldefaults and /do-mysql-sh
17# if we don't have all of these files, BAD THINGS may happen
18probe-files:
19 [ -f /install-packages.sh ]
20 [ -f /pkgs ]
21 [ -f /install-drupal-toolchain.sh ]
22 [ -f /do-mysql.sh ]
23 [ -f /sqldefaults ]
24
25install-drupal:
26 chmod +x /install-drupal-toolchain.sh
27 /install-drupal-toolchain.sh
28
29install-pkgs:
30 chmod +x /install-packages.sh
31 /install-packages.sh
32
33do-mysql:
34 chmod +x /do-mysql.sh
35 /do-mysql.sh
36 # secure these two files because they contain passwords in plaintext
37 chmod og-rwx /do-mysql.sh
38 chmod 0600 /sqldefaults
39
40# recipes to restore the site from a backup
41install-from-backups: probe-backup-files install-sqldump install-drupal-sites chown-www
42
43probe-backup-files:
44 [ -f /sqldump ]
45 [ -d /sites ]
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# recipes for building a chroot. notice that sql does not cooperate with chroots, due to some funky postinstall hooks and /proc namespaces conflicting
56build-chroot: new-chroot install-pkgs-in-chroot install-drupal-toolchain
57
58new-chroot:
59 rm -rf tristrap
60 mkdir tristrap
61 debootstrap --merged-usr etiona ./tristrap/ http://mirror.fsf.org/trisquel/
62
63install-pkgs-in-chroot:
64 cp files/pkgs tristrap
65 cp files/install-packages.sh tristrap
66 chmod +x tristrap/install-packages.sh
67 chroot tristrap /install-packages.sh
68
69install-drupal-toolchain:
70 cp files/install-drupal-toolchain.sh tristrap
71 chmod +x tristrap/install-drupal-toolchain.sh
72 chroot tristrap /install-drupal-toolchain.sh