You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
343 B
Plaintext
19 lines
343 B
Plaintext
4 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# Copyright (C) 2018 devolo AG
|
||
|
#
|
||
|
|
||
|
|
||
|
prepare_webui_licenses() {
|
||
|
local license_base=/www/app/shared
|
||
|
|
||
|
# symlink to the licenses directory where delos-webui expects it
|
||
|
[ -d /www/licenses ] && [ -e /www/app/components/status/licenses ] && {
|
||
|
ln -s /www/licenses /www/app/shared
|
||
|
}
|
||
|
}
|
||
|
|
||
|
prepare_webui_licenses
|
||
|
|
||
|
exit 0
|