This commit is contained in:
CanbiZ 2025-05-22 11:53:51 +02:00
parent ce23c8146a
commit 92445d4ae8
3 changed files with 37 additions and 42 deletions

View File

@ -7,9 +7,9 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV
APP="Lyrion Music Server" APP="Lyrion Music Server"
var_tags="${var_tags:-media}" var_tags="${var_tags:-media}"
var_cpu="${var_cpu:-2}" var_cpu="${var_cpu:-1}"
var_ram="${var_ram:-2048}" var_ram="${var_ram:-1024}"
var_disk="${var_disk:-5}" var_disk="${var_disk:-3}"
var_os="${var_os:-debian}" var_os="${var_os:-debian}"
var_version="${var_version:-12}" var_version="${var_version:-12}"
var_unprivileged="${var_unprivileged:-1}" var_unprivileged="${var_unprivileged:-1}"
@ -24,7 +24,7 @@ function update_script() {
check_container_storage check_container_storage
check_container_resources check_container_resources
if [[ ! -d /opt/argus ]]; then if [[ ! -f /lib/systemd/system/lyrionmusicserver.service ]]; then
msg_error "No ${APP} Installation Found!" msg_error "No ${APP} Installation Found!"
exit exit
fi fi

View File

@ -1,40 +1,35 @@
{ {
"name": "Lyrion Music Server", "name": "Lyrion Music Server",
"slug": "lyrionmusicserver", "slug": "lyrionmusicserver",
"categories": [ "categories": [
9 9
], ],
"date_created": "2025-05-21", "date_created": "2025-05-21",
"type": "ct", "type": "ct",
"updateable": true, "updateable": true,
"privileged": false, "privileged": false,
"config_path": "", "config_path": "/etc/default/lyrionmusicserver",
"interface_port": 9000, "interface_port": 9000,
"documentation": "https://lyrion.org/", "documentation": "https://lyrion.org/",
"website": "https://lyrion.org/", "website": "https://lyrion.org/",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons/webp/lyrion-media-server.webp", "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons/webp/lyrion-media-server.webp",
"description": "Lyrion Music Server is an open-source server software to stream local music collections, internet radio, and music services to Squeezebox and compatible audio players.", "description": "Lyrion Music Server is an open-source server software to stream local music collections, internet radio, and music services to Squeezebox and compatible audio players.",
"install_methods": [ "install_methods": [
{ {
"type": "default", "type": "default",
"script": "ct/lyrionmusicserver.sh", "script": "ct/lyrionmusicserver.sh",
"resources": { "resources": {
"cpu": 2, "cpu": 1,
"ram": 8192, "ram": 1024,
"hdd": 60, "hdd": 3,
"os": "Debian", "os": "Debian",
"version": "12" "version": "12"
} }
} }
], ],
"default_credentials": { "default_credentials": {
"username": null, "username": null,
"password": null "password": null
}, },
"notes": [ "notes": []
{
"text": "WARNING: Installation downloads a .deb package from downloads.lms-community.org. Please verify the source before installing.",
"type": "warning"
}
]
} }