X-Git-Url: https://iankelling.org/git/?p=iankelling.org;a=blobdiff_plain;f=setup.sh;h=41e7d5089c9e1f18924ef69543fd4ce905c4db80;hp=59f3009bd8a45c327c05d8c5909d0e85e0a1805f;hb=f32e5dec81ec4011c7327c3273502aa4ce041df7;hpb=d8778b6587a870f5eb36b5fd5e98297957adf429 diff --git a/setup.sh b/setup.sh index 59f3009..41e7d50 100755 --- a/setup.sh +++ b/setup.sh @@ -1,4 +1,4 @@ -#!/bin/bash -l +#!/bin/bash # Copyright (C) 2016 Ian Kelling # This program is free software: you can redistribute it and/or modify @@ -14,24 +14,72 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# This script depends on a few other git repos of mine, such as -# distro-functions, basic-https-conf, acme-tiny-wrapper set -eE -o pipefail trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?" >&2' ERR -script_dir=$(readlink -f "${BASH_SOURCE%/*}") -cd "$script_dir" +usage() { + cat </dev/null || pi apache2 -type -P sqlite3 &>/dev/null || pi sqlite3 +type -P a2enmod &>/dev/null || $s apt-get -y install apache2 +type -P sqlite3 &>/dev/null || $s apt-get -y install sqlite3 +type -P ffmpeg &>/dev/null || $s apt-get -y install ffmpeg -acme-tiny-wrapper $domain pkgs=( # build.rb dependencies @@ -41,14 +89,14 @@ pkgs=( # gitweb pkgs gitweb highlight ) -if isdebian-stable; then +if $deb8; then pkgs+=(build-essential ruby-dev) else pkgs+=(ruby-redcarpet) fi -pi ${pkgs[@]} -if isdebian-stable; then +$s apt-get -y install ${pkgs[@]} +if $deb8; then sudo gem install redcarpet fi chmod og+x _site/on2vote/vote.py @@ -60,11 +108,11 @@ chmod og+x _site/on2vote/vote.py # It's example apache config seems to say we can use cgi or cgid, # and googling cgid it seems a newer faster alternative. I also # depend on this in my o(n^2) python script. -sudo a2enmod cgid +$s a2enmod cgid # additional settings from browsing https://git-scm.com/docs/gitweb.conf -s dd of=/etc/gitweb.conf < # to run python scripts with cgi @@ -159,4 +209,5 @@ EOF $script_dir/gitweb-descriptions $gitroot $script_dir/build.rb -s lnf -T $script_dir/_site /var/www/$domain/html +$s rm -rf /var/www/$domain/html +$s ln -sT $script_dir/_site /var/www/$domain/html