15 lines
221 B
Bash
15 lines
221 B
Bash
#!/bin/bash
|
|
|
|
cd /usr/share/nginx
|
|
|
|
rm -rf html
|
|
mkdir html
|
|
|
|
git clone https://git.brodystenfors.cloud/stenny94/kiosk-menu-image.git html
|
|
|
|
cd html
|
|
sed -i "s/*LOCATION/${LOCATION:-clay}/g" index.html
|
|
|
|
nginx -g "daemon off;"
|
|
|