Fix forgotten values

This commit is contained in:
Disassembler 2019-06-05 18:15:34 +02:00
parent d3d8e3b766
commit b96aae6780
Signed by: Disassembler
GPG Key ID: 524BD33A0EE29499
3 changed files with 4 additions and 4 deletions

View File

@ -21,7 +21,7 @@ ifup eth0
# Download and launch the setup script
wget repo.spotter.cz/vm.sh
sh _vm.sh
sh vm.sh
```
The script will perform installation and configuration of Alpine linux, LXC and the whole VMMgr platform. Virtual machine is protected by LUKS-on-LVM disk encryption. The encryption password, which is simultaneously also a password for VMMgr web administration interface, will be asked for at the beginning of the script execution. Root access is disabled.
@ -56,7 +56,7 @@ Spotter-Cluster/build/install-toolchain.sh
There are 3 distinct packaging systems.
1. Just a plain tar for basic OS setup used by `_vm.sh` installation script.
1. Just a plain tar for basic OS setup used by `vm.sh` installation script.
2. [Abuild](abuild) for the native Alpine linux packages (APK) used for ACME client and VMMgr packaging.
3. [`lxc-build`](lxc-build) / [`lxc-pack`](lxc-pack) for LXC container building and packaging.

View File

@ -27,7 +27,7 @@ envsubst <adminpwd.sql | lxc-attach -u 5432 -g 5432 postgres -- psql seeddms
chown -R 8010:8010 /srv/seeddms/conf
# Install cron job
cp etc/periodic/hourly/seeddms /etc/periodic/hourly/seeddms
cp etc/periodic/15min/seeddms /etc/periodic/15min/seeddms
# Install service
cp etc/init.d/seeddms /etc/init.d/seeddms

View File

@ -2,7 +2,7 @@
set -ev
# Remove cronjob
rm -f /etc/periodic/hourly/seeddms
rm -f /etc/periodic/15min/seeddms
# Remove service
rm -f /etc/init.d/seeddms