1 DATE
:=`date --iso-8601`
3 # make sure perms are right, gets called at the end of many routines
5 chown
-R www-data
:www-data
/var
/www
7 # recipes for installing this thing onto a "real" (non-chroot) system
8 setup-real-system
: probe-files install-pkgs install-drupal do-mysql chown-www
10 # test that we have /install-{drupal-toolchain,packages}.sh /pkgs /sqldefaults and /do-mysql-sh
11 # if we don't have all of these files, BAD THINGS may happen
13 [ -f
/install-packages.sh
]
15 [ -f
/install-drupal-toolchain.sh
]
20 chmod
+x
/install-drupal-toolchain.sh
21 /install-drupal-toolchain.sh
24 chmod
+x
/install-packages.sh
30 # secure these two files because they contain passwords in plaintext
31 chmod og-rwx
/do-mysql.sh
32 chmod
0600 /sqldefaults
34 # recipes to restore the site from a backup
35 install-from-backups
: probe-backup-files install-sqldump install-drupal-sites chown-www
39 [ -f
/sites
&& -d
/sites
]
42 # source the dump twice - once to create the DB, once to populate it
43 mysql
-u root
-p
-e
'source /sqldump; source /sqldump'
49 # recipes for building a chroot. notice that sql does not cooperate with chroots, due to some funky postinstall hooks and /proc namespaces conflicting
50 build-chroot
: new-chroot install-pkgs-in-chroot install-drupal-toolchain
55 debootstrap
--merged-usr etiona .
/tristrap
/ http
://mirror.fsf.org
/trisquel
/
57 install-pkgs-in-chroot
:
58 cp files
/pkgs tristrap
59 cp files
/install-packages.sh tristrap
60 chmod
+x tristrap
/install-packages.sh
61 chroot tristrap
/install-packages.sh
63 install-drupal-toolchain
:
64 cp files
/install-drupal-toolchain.sh tristrap
65 chmod
+x tristrap
/install-drupal-toolchain.sh
66 chroot tristrap
/install-drupal-toolchain.sh