diff options
author | Adam T. Carpenter <atc@53hor.net> | 2021-07-03 10:48:05 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2021-07-03 10:48:05 -0400 |
commit | 5154120849a68db184648da7034e5c5ce27ea04c (patch) | |
tree | 4ca773064f179b624cf666ac40ffc7fcbe731faf /Bastillefile | |
parent | 45bef0968ae13c5167fec8df37c03413330ea9c8 (diff) | |
download | carpentertutoring-5154120849a68db184648da7034e5c5ce27ea04c.tar.xz carpentertutoring-5154120849a68db184648da7034e5c5ce27ea04c.zip |
added CGI module, updated to pull new site and depends
Diffstat (limited to 'Bastillefile')
-rw-r--r-- | Bastillefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/Bastillefile b/Bastillefile index 7c44cf0..ddc5e5b 100644 --- a/Bastillefile +++ b/Bastillefile @@ -1,16 +1,14 @@ # Prerequisites -FSTAB /zroot/carpentertutoring /var/carpentertutoring nullfs ro 0 0 PKG lighttpd php74 php74-filter php74-openssl OVERLAY usr +CMD mkdir -p /var/www/PHPMailer /var/carpentertutoring +FSTAB /zroot/carpentertutoring /var/carpentertutoring nullfs ro 0 0 # Install site to web root -CMD mkdir -p /var/www && echo Created /var/www -CMD fetch -o /tmp/master.tar.gz http://git.53hor.net/53hornet/carpentertutoring/archive/master.tar.gz -CMD fetch -o /tmp/phpmailer.zip https://github.com/PHPMailer/PHPMailer/archive/master.zip -CMD tar -xzvf /tmp/master.tar.gz -C /var/www -CMD tar -xzvf /tmp/phpmailer.zip -C /var/www +CMD fetch -o - http://git.53hor.net/53hornet/carpentertutoring/archive/master.tar.gz | tar --cd /var/www --strip-components 1 --extract --file - +CMD fetch -o - https://github.com/PHPMailer/PHPMailer/archive/master.zip | tar --cd /var/www/PHPMailer --strip-components 1 --extract --file - # Start server SYSRC lighttpd_enable=YES -SERVICE lighttpd start +SERVICE lighttpd restart |