2017-12-18 22:16:21 +01:00
|
|
|
#!/bin/sh
|
2018-07-15 21:55:35 +02:00
|
|
|
set -e
|
2017-06-23 10:17:08 +02:00
|
|
|
|
2017-12-04 17:48:37 +01:00
|
|
|
SOURCE_DIR=$(realpath $(dirname "${0}"))/basic
|
2017-06-25 20:49:10 +02:00
|
|
|
|
2017-12-18 22:16:21 +01:00
|
|
|
# Install packages
|
2018-02-06 16:59:00 +01:00
|
|
|
apk --no-cache add --virtual .useful curl git file htop libressl openssh-server openssh-sftp-server
|
2018-01-15 20:05:33 +01:00
|
|
|
apk --no-cache add docker gettext kbd-misc python2 nginx
|
2017-06-23 11:01:08 +02:00
|
|
|
|
2017-09-17 23:05:00 +02:00
|
|
|
# Copy profile files and settings
|
2018-01-15 20:05:33 +01:00
|
|
|
mkdir -p /root/.config/htop /root/.ssh
|
2018-01-11 09:16:26 +01:00
|
|
|
cp ${SOURCE_DIR}/root/.profile /root/.profile
|
2017-12-18 22:16:21 +01:00
|
|
|
cp ${SOURCE_DIR}/root/.ssh/authorized_keys /root/.ssh/authorized_keys
|
2017-12-04 17:48:37 +01:00
|
|
|
cp ${SOURCE_DIR}/root/.config/htop/htoprc /root/.config/htop/htoprc
|
2017-06-23 11:01:08 +02:00
|
|
|
|
2017-12-18 22:16:21 +01:00
|
|
|
# Copy boot configuration
|
|
|
|
cp ${SOURCE_DIR}/boot/extlinux.conf /boot/extlinux.conf
|
2018-01-28 10:29:14 +01:00
|
|
|
cp ${SOURCE_DIR}/boot/spotter.txt /boot/spotter.txt
|
2017-12-18 22:16:21 +01:00
|
|
|
cp ${SOURCE_DIR}/etc/inittab /etc/inittab
|
2018-03-25 22:47:19 +02:00
|
|
|
>/etc/motd
|
2017-06-25 20:49:10 +02:00
|
|
|
|
2017-12-18 22:16:21 +01:00
|
|
|
# Enable support for Czech characters
|
|
|
|
cp ${SOURCE_DIR}/etc/rc.conf /etc/rc.conf
|
|
|
|
cp ${SOURCE_DIR}/etc/conf.d/consolefont /etc/conf.d/consolefont
|
2017-09-18 23:04:16 +02:00
|
|
|
|
2018-02-06 16:59:00 +01:00
|
|
|
# Configure NTP client
|
|
|
|
cp ${SOURCE_DIR}/etc/conf.d/ntpd /etc/conf.d/ntpd
|
|
|
|
|
2017-06-25 20:49:10 +02:00
|
|
|
# Create a self-signed certificate
|
2017-12-18 22:16:21 +01:00
|
|
|
mkdir /etc/ssl/private
|
2018-04-29 20:48:57 +02:00
|
|
|
openssl req -x509 -new -out /etc/ssl/certs/services.pem -keyout /etc/ssl/private/services.key -nodes -days 7305 -subj "/CN=$(hostname)"
|
2017-06-25 20:49:10 +02:00
|
|
|
chmod 640 /etc/ssl/private/services.key
|
|
|
|
|
2017-09-18 17:50:13 +02:00
|
|
|
# Configure nginx
|
2017-12-19 10:09:33 +01:00
|
|
|
cp ${SOURCE_DIR}/etc/nginx/nginx.conf /etc/nginx/nginx.conf
|
2017-09-20 14:15:57 +02:00
|
|
|
|
2018-04-29 20:48:57 +02:00
|
|
|
# Download and configure acme.sh
|
|
|
|
mkdir /etc/acme.sh.d
|
|
|
|
wget https://raw.githubusercontent.com/Neilpang/acme.sh/master/acme.sh -O /usr/bin/acme.sh
|
|
|
|
sed -i 's|$HOME/.$PROJECT_NAME|/etc/acme.sh.d|' /usr/bin/acme.sh
|
|
|
|
cp ${SOURCE_DIR}/etc/periodic/daily/acme-sh /etc/periodic/daily/acme-sh
|
|
|
|
chmod +x /usr/bin/acme.sh
|
|
|
|
|
2018-03-25 22:47:19 +02:00
|
|
|
# Copy Spotter resources
|
|
|
|
mkdir /etc/spotter
|
2018-04-29 20:48:57 +02:00
|
|
|
cp ${SOURCE_DIR}/srv/config.json /srv/config.json
|
|
|
|
cp ${SOURCE_DIR}/usr/bin/spotter-appmgr /usr/bin/spotter-appmgr
|
2017-12-04 17:48:37 +01:00
|
|
|
cp -r ${SOURCE_DIR}/srv/portal /srv/portal
|
2017-12-04 21:51:48 +01:00
|
|
|
|
2017-12-18 22:16:21 +01:00
|
|
|
# Configure services
|
2018-03-24 10:24:18 +01:00
|
|
|
for SERVICE in consolefont crond nginx ntpd sshd; do
|
2017-12-18 22:16:21 +01:00
|
|
|
rc-update add ${SERVICE} boot
|
|
|
|
service ${SERVICE} start
|
|
|
|
done
|
2018-03-24 14:51:13 +01:00
|
|
|
|
|
|
|
# Configure Docker service
|
|
|
|
cp ${SOURCE_DIR}/etc/init.d/docker /etc/init.d/docker
|
2018-03-24 10:24:18 +01:00
|
|
|
rc-update add docker
|
|
|
|
service docker start
|
2018-03-25 22:47:19 +02:00
|
|
|
|
2018-04-30 23:13:11 +02:00
|
|
|
# Create basic images
|
2018-04-30 22:39:44 +02:00
|
|
|
docker build -t alpine ${SOURCE_DIR}
|
|
|
|
|
2018-03-25 22:47:19 +02:00
|
|
|
# Set dummy domain and generate related files
|
|
|
|
spotter-appmgr update-domain spotter.vm 443
|