12 lines
742 B
Bash
12 lines
742 B
Bash
#!/usr/bin/env bash
|
|
|
|
sed -i "s/operatorLogoText: 'Conpeek'/operatorLogoText: 'OPERATOR_NAME'/g" /srv/conpeek/app_tenant/resources/Vars.js
|
|
|
|
cp /custom/images/small_logo.png /srv/conpeek/app_tenant/resources/logo/bialy_64.png >/dev/null 2>&1
|
|
cp /custom/images/login_logo.jpg /srv/conpeek/app_tenant/resources/images/lock-screen-logo.jpg >/dev/null 2>&1
|
|
cp /custom/images/favicon.ico /srv/conpeek/app_tenant/favicon_none.ico >/dev/null 2>&1
|
|
|
|
cp /custom/images/small_logo.png /srv/conpeek/app_wallboard/resources/logo/bialy_64.png >/dev/null 2>&1
|
|
cp /custom/images/login_logo.jpg /srv/conpeek/app_wallboard/resources/images/lock-screen-logo.jpg >/dev/null 2>&1
|
|
cp /custom/images/favicon.ico /srv/conpeek/app_wallboard/favicon.ico >/dev/null 2>&1
|