2
1
Fork 0
mirror of https://git.savannah.gnu.org/git/gnuboot.git synced 2025-01-03 23:07:39 +01:00
gnuboot/website/serve.sh
Denis 'GNUtoo' Carikli c2d32b05be
website: serve.sh: update copyright headers.
The serve.sh script was added in the commit
58fc2a673d ("Add the ability to test the
website locally") in the website-build repository of the Genuine
Libreboot project. This repository was then merged in GNU Boot.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-09-06 17:39:04 +02:00

48 lines
1.3 KiB
Bash
Executable file

#!/usr/bin/env sh
# Copyright (C) 2022-2024 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
set -e
usage()
{
progname="$1"
echo "${progname} --website-prefix PREFIX <path/to/tarball> [PORT]"
exit 1
}
if [ $# -ne 3 ] && [ $# -ne 4 ] && [ "$1" != "--website-prefix" ] ; then
usage "serve.sh"
fi
basedir="$(dirname $(realpath $0))"
prefix="$2"
tarball="$3"
lighttpd_port=8086
if [ $# -eq 2 ] ; then
lighttpd_port="$4"
fi
mkdir -p "site/${prefix}"
tar xf "${tarball}" -C "site/${prefix}"
sed -e "s#LIGHTTPD_PORT#${lighttpd_port}#g" \
"${basedir}/lighttpd.conf.tmpl" > \
"${basedir}/lighttpd.conf"
lighttpd -f lighttpd.conf -D