DATE:=`date --iso-8601` # recipes for installing this thing onto a "real" (non-chroot) system setup-real-system: probe-files install-pkgs install-drupal do-mysql # test that we have /install-{drupal-toolchain,packages}.sh /pkgs /sqldefaults and /do-mysql-sh # if we don't have all of these files, BAD THINGS may happen probe-files: [ -f /install-packages.sh ] [ -f /pkgs ] [ -f /install-drupal-toolchain.sh ] [ -f /do-mysql.sh ] [ -f /sqldefaults ] install-drupal: chmod +x /install-drupal-toolchain.sh /install-drupal-toolchain.sh install-pkgs: chmod +x /install-packages.sh /install-packages.sh do-mysql: chmod +x /do-mysql.sh /do-mysql.sh # secure these two files because they contain passwords in plaintext chmod og-rwx /do-mysql.sh chmod 0600 /sqldefaults # recipes for building a chroot. notice that sql does not cooperate with chroots, due to some funky postinstall hooks and /proc namespaces conflicting build-chroot: new-chroot install-pkgs-in-chroot install-drupal-toolchain new-chroot: rm -rf tristrap mkdir tristrap debootstrap --merged-usr etiona ./tristrap/ http://mirror.fsf.org/trisquel/ install-pkgs-in-chroot: cp files/pkgs tristrap cp files/install-packages.sh tristrap chmod +x tristrap/install-packages.sh chroot tristrap /install-packages.sh install-drupal-toolchain: cp files/install-drupal-toolchain.sh tristrap chmod +x tristrap/install-drupal-toolchain.sh chroot tristrap /install-drupal-toolchain.sh