From 2dcc7736dc68fda5596b5b7ef40a644b8d12390d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Oliveira?= Date: Fri, 5 Sep 2025 11:43:19 +0100 Subject: [PATCH 1/5] Added ct, install and json files --- ct/stylus.sh | 62 ++++++++++++++++++++++++++++++++ frontend/public/json/stylus.json | 40 +++++++++++++++++++++ install/stylus-install.sh | 62 ++++++++++++++++++++++++++++++++ 3 files changed, 164 insertions(+) create mode 100644 ct/stylus.sh create mode 100644 frontend/public/json/stylus.json create mode 100644 install/stylus-install.sh diff --git a/ct/stylus.sh b/ct/stylus.sh new file mode 100644 index 00000000..8c3c5568 --- /dev/null +++ b/ct/stylus.sh @@ -0,0 +1,62 @@ +#!/usr/bin/env bash +source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) +# Copyright (c) 2021-2025 community-scripts ORG +# Author: luismco +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://github.com/mmastrac/stylus + +APP="Stylus" +var_tags="${var_tags:-network}" +var_cpu="${var_cpu:-2}" +var_ram="${var_ram:-2048}" +var_disk="${var_disk:-8}" +var_os="${var_os:-debian}" +var_version="${var_version:-12}" +var_unprivileged="${var_unprivileged:-1}" +var_fuse="${var_fuse:-1}" + +header_info "$APP" +variables +color +catch_errors + +function update_script() { + header_info + check_container_storage + check_container_resources + + if [[ ! -d /opt/stylus ]]; then + msg_error "No ${APP} Installation Found!" + exit + fi + + RELEASE=$(curl -fsSL https://api.github.com/repos/mmastrac/stylus/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') + if [[ ! -f /opt/stylus/stylus_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/stylus/stylus_version.txt)" ]]; then + msg_info "Stopping $APP" + systemctl stop stylus + msg_ok "Stopped $APP" + + msg_info "Updating $APP" + $STD rustup update + $STD cargo install-update -a + $STD su -c "cargo install --list | grep 'stylus' | cut -d' ' -f2 | sed 's/^v//;s/:$//' > /opt/stylus/stylus_version.txt" + msg_ok "Updated $APP" + + msg_info "Starting $APP" + systemctl start stylus + msg_ok "Started $APP" + msg_ok "Update Successful" + else + msg_ok "No update required. ${APP} is already at v${RELEASE}." + fi + exit +} + +start +build_container +description + +msg_ok "Completed Successfully!\n" +echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" +echo -e "${INFO}${YW} Access it using the following URL:${CL}" +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8000${CL}" diff --git a/frontend/public/json/stylus.json b/frontend/public/json/stylus.json new file mode 100644 index 00000000..4a8efe03 --- /dev/null +++ b/frontend/public/json/stylus.json @@ -0,0 +1,40 @@ +{ + "name": "Stylus", + "slug": "stylus", + "categories": [ + 4 + ], + "date_created": "2025-09-05", + "type": "ct", + "updateable": true, + "privileged": false, + "interface_port": 8000, + "documentation": "https://mmastrac.github.io/stylus/", + "website": "https://github.com/mmastrac/stylus", + "logo": null, + "config_path": "/opt/stylus/", + "description": "Stylus (style + status) is a lightweight status page for infrastructure and networks. Configure a set of bash scripts that test the various parts of your infrastructure, set up visualizations with minimal configuration, and Stylus will generate you a dashboard for your system.", + "install_methods": [ + { + "type": "default", + "script": "ct/stylus.sh", + "resources": { + "cpu": 2, + "ram": 2048, + "hdd": 8, + "os": "debian", + "version": "12" + } + } + ], + "default_credentials": { + "username": null, + "password": null + }, + "notes": [ + { + "text": "Configuration Path: `/opt/stylus/`", + "type": "info" + } + ] +} diff --git a/install/stylus-install.sh b/install/stylus-install.sh new file mode 100644 index 00000000..84b9af32 --- /dev/null +++ b/install/stylus-install.sh @@ -0,0 +1,62 @@ +#!/usr/bin/env bash + +# Copyright (c) 2021-2025 community-scripts ORG +# Author: luismco +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://github.com/mmastrac/stylus + +source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" +color +verb_ip6 +catch_errors +setting_up_container +network_check +update_os + +msg_info "Installing dependencies" +$STD apt-get install -y \ + build-essential \ + openssl \ + libssl-dev \ + pkg-config +msg_ok "Installed dependencies" + +msg_info "Installing Rust" +$STD su -c "curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh -s -- -y" +$STD . "$HOME/.cargo/env" +$STD cargo install cargo-update +msg_ok "Installed Rust" + +msg_info "Installing Stylus" +$STD cargo install stylus +$STD stylus init /opt/stylus/ +$STD su -c "cargo install --list | grep 'stylus' | cut -d' ' -f2 | sed 's/^v//;s/:$//' > /opt/stylus/stylus_version.txt" +msg_ok "Installed Stylus" + +msg_info "Creating service" + +cat >/etc/systemd/system/stylus.service < Date: Fri, 5 Sep 2025 12:53:50 +0100 Subject: [PATCH 2/5] Added new check_for_gh_release function and changed version file to new home. Config path now points to a file. Revisioned cat command on install script. --- ct/stylus.sh | 6 ++---- frontend/public/json/stylus.json | 4 ++-- install/stylus-install.sh | 7 ++++--- 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/ct/stylus.sh b/ct/stylus.sh index 8c3c5568..69ae4a2d 100644 --- a/ct/stylus.sh +++ b/ct/stylus.sh @@ -29,9 +29,7 @@ function update_script() { msg_error "No ${APP} Installation Found!" exit fi - - RELEASE=$(curl -fsSL https://api.github.com/repos/mmastrac/stylus/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') - if [[ ! -f /opt/stylus/stylus_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/stylus/stylus_version.txt)" ]]; then + if check_for_gh_release "stylus" "mmastrac/stylus"; then msg_info "Stopping $APP" systemctl stop stylus msg_ok "Stopped $APP" @@ -39,7 +37,7 @@ function update_script() { msg_info "Updating $APP" $STD rustup update $STD cargo install-update -a - $STD su -c "cargo install --list | grep 'stylus' | cut -d' ' -f2 | sed 's/^v//;s/:$//' > /opt/stylus/stylus_version.txt" + $STD su -c "cargo install --list | grep 'stylus' | cut -d' ' -f2 | sed 's/^v//;s/:$//' > ~/.stylus" msg_ok "Updated $APP" msg_info "Starting $APP" diff --git a/frontend/public/json/stylus.json b/frontend/public/json/stylus.json index 4a8efe03..94b2244d 100644 --- a/frontend/public/json/stylus.json +++ b/frontend/public/json/stylus.json @@ -12,7 +12,7 @@ "documentation": "https://mmastrac.github.io/stylus/", "website": "https://github.com/mmastrac/stylus", "logo": null, - "config_path": "/opt/stylus/", + "config_path": "/opt/stylus/config.yaml", "description": "Stylus (style + status) is a lightweight status page for infrastructure and networks. Configure a set of bash scripts that test the various parts of your infrastructure, set up visualizations with minimal configuration, and Stylus will generate you a dashboard for your system.", "install_methods": [ { @@ -33,7 +33,7 @@ }, "notes": [ { - "text": "Configuration Path: `/opt/stylus/`", + "text": "Configuration Path: `/opt/stylus/config.yaml`", "type": "info" } ] diff --git a/install/stylus-install.sh b/install/stylus-install.sh index 84b9af32..c515ce28 100644 --- a/install/stylus-install.sh +++ b/install/stylus-install.sh @@ -30,20 +30,21 @@ msg_ok "Installed Rust" msg_info "Installing Stylus" $STD cargo install stylus $STD stylus init /opt/stylus/ -$STD su -c "cargo install --list | grep 'stylus' | cut -d' ' -f2 | sed 's/^v//;s/:$//' > /opt/stylus/stylus_version.txt" +$STD su -c "cargo install --list | grep 'stylus' | cut -d' ' -f2 | sed 's/^v//;s/:$//' > ~/.stylus" msg_ok "Installed Stylus" msg_info "Creating service" -cat >/etc/systemd/system/stylus.service </etc/systemd/system/stylus.service [Unit] -Description=Stylus +Description=Stylus Service After=network.target [Service] Type=simple ExecStart=$HOME/.cargo/bin/stylus run /opt/stylus Restart=on-failure +RestartSec=5 [Install] WantedBy=multi-user.target From 91fcd53a53f34c83658e1f46495751ed7e686b76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Oliveira?= Date: Fri, 5 Sep 2025 14:16:30 +0100 Subject: [PATCH 3/5] Small text change in the update msg_ok to remove duplicate version number info --- ct/stylus.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/stylus.sh b/ct/stylus.sh index 69ae4a2d..fb1addb2 100644 --- a/ct/stylus.sh +++ b/ct/stylus.sh @@ -45,7 +45,7 @@ function update_script() { msg_ok "Started $APP" msg_ok "Update Successful" else - msg_ok "No update required. ${APP} is already at v${RELEASE}." + msg_ok "No update required. Latest version already installed." fi exit } From 791db5589a81a96a5a47351846f1f0993ef8c880 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Oliveira?= Date: Sat, 6 Sep 2025 09:56:35 +0100 Subject: [PATCH 4/5] Simplified install and update scripts with binaries instead of building it from source. Added app icon. Updated app resources. --- ct/stylus.sh | 11 +++++------ frontend/public/json/stylus.json | 10 +++++----- install/stylus-install.sh | 24 +++++------------------- 3 files changed, 15 insertions(+), 30 deletions(-) diff --git a/ct/stylus.sh b/ct/stylus.sh index fb1addb2..9e8bd99b 100644 --- a/ct/stylus.sh +++ b/ct/stylus.sh @@ -7,9 +7,9 @@ source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVED/ APP="Stylus" var_tags="${var_tags:-network}" -var_cpu="${var_cpu:-2}" -var_ram="${var_ram:-2048}" -var_disk="${var_disk:-8}" +var_cpu="${var_cpu:-1}" +var_ram="${var_ram:-1024}" +var_disk="${var_disk:-2}" var_os="${var_os:-debian}" var_version="${var_version:-12}" var_unprivileged="${var_unprivileged:-1}" @@ -35,9 +35,8 @@ function update_script() { msg_ok "Stopped $APP" msg_info "Updating $APP" - $STD rustup update - $STD cargo install-update -a - $STD su -c "cargo install --list | grep 'stylus' | cut -d' ' -f2 | sed 's/^v//;s/:$//' > ~/.stylus" + fetch_and_deploy_gh_release "stylus" "mmastrac/stylus" "singlefile" "latest" "/usr/bin/" "*_linux_amd64" + msg_ok "Updated $APP" msg_info "Starting $APP" diff --git a/frontend/public/json/stylus.json b/frontend/public/json/stylus.json index 94b2244d..9ef41244 100644 --- a/frontend/public/json/stylus.json +++ b/frontend/public/json/stylus.json @@ -4,14 +4,14 @@ "categories": [ 4 ], - "date_created": "2025-09-05", + "date_created": "2025-09-06", "type": "ct", "updateable": true, "privileged": false, "interface_port": 8000, "documentation": "https://mmastrac.github.io/stylus/", "website": "https://github.com/mmastrac/stylus", - "logo": null, + "logo": "https: //cdn.jsdelivr.net/gh/selfhst/icons/webp/stylus.webp", "config_path": "/opt/stylus/config.yaml", "description": "Stylus (style + status) is a lightweight status page for infrastructure and networks. Configure a set of bash scripts that test the various parts of your infrastructure, set up visualizations with minimal configuration, and Stylus will generate you a dashboard for your system.", "install_methods": [ @@ -19,9 +19,9 @@ "type": "default", "script": "ct/stylus.sh", "resources": { - "cpu": 2, - "ram": 2048, - "hdd": 8, + "cpu": 1, + "ram": 1024, + "hdd": 2, "os": "debian", "version": "12" } diff --git a/install/stylus-install.sh b/install/stylus-install.sh index c515ce28..d740fd3b 100644 --- a/install/stylus-install.sh +++ b/install/stylus-install.sh @@ -13,28 +13,14 @@ setting_up_container network_check update_os -msg_info "Installing dependencies" -$STD apt-get install -y \ - build-essential \ - openssl \ - libssl-dev \ - pkg-config -msg_ok "Installed dependencies" - -msg_info "Installing Rust" -$STD su -c "curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh -s -- -y" -$STD . "$HOME/.cargo/env" -$STD cargo install cargo-update -msg_ok "Installed Rust" - msg_info "Installing Stylus" -$STD cargo install stylus +fetch_and_deploy_gh_release "stylus" "mmastrac/stylus" "singlefile" "latest" "/usr/bin/" "*_linux_amd64" + +msg_info "Configuring Stylus" $STD stylus init /opt/stylus/ -$STD su -c "cargo install --list | grep 'stylus' | cut -d' ' -f2 | sed 's/^v//;s/:$//' > ~/.stylus" -msg_ok "Installed Stylus" +msg_ok "Configured Stylus" msg_info "Creating service" - cat </etc/systemd/system/stylus.service [Unit] Description=Stylus Service @@ -42,7 +28,7 @@ After=network.target [Service] Type=simple -ExecStart=$HOME/.cargo/bin/stylus run /opt/stylus +ExecStart=stylus run /opt/stylus/ Restart=on-failure RestartSec=5 From 42588937730bd310a84a2834004f9339524492c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Oliveira?= Date: Sat, 6 Sep 2025 10:04:49 +0100 Subject: [PATCH 5/5] Small correction to the install script --- install/stylus-install.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/install/stylus-install.sh b/install/stylus-install.sh index d740fd3b..483b055f 100644 --- a/install/stylus-install.sh +++ b/install/stylus-install.sh @@ -13,7 +13,6 @@ setting_up_container network_check update_os -msg_info "Installing Stylus" fetch_and_deploy_gh_release "stylus" "mmastrac/stylus" "singlefile" "latest" "/usr/bin/" "*_linux_amd64" msg_info "Configuring Stylus"