Simplified install and update scripts with binaries instead of building it from source. Added app icon. Updated app resources.
This commit is contained in:
parent
91fcd53a53
commit
791db5589a
11
ct/stylus.sh
11
ct/stylus.sh
@ -7,9 +7,9 @@ source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVED/
|
|||||||
|
|
||||||
APP="Stylus"
|
APP="Stylus"
|
||||||
var_tags="${var_tags:-network}"
|
var_tags="${var_tags:-network}"
|
||||||
var_cpu="${var_cpu:-2}"
|
var_cpu="${var_cpu:-1}"
|
||||||
var_ram="${var_ram:-2048}"
|
var_ram="${var_ram:-1024}"
|
||||||
var_disk="${var_disk:-8}"
|
var_disk="${var_disk:-2}"
|
||||||
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}"
|
||||||
@ -35,9 +35,8 @@ function update_script() {
|
|||||||
msg_ok "Stopped $APP"
|
msg_ok "Stopped $APP"
|
||||||
|
|
||||||
msg_info "Updating $APP"
|
msg_info "Updating $APP"
|
||||||
$STD rustup update
|
fetch_and_deploy_gh_release "stylus" "mmastrac/stylus" "singlefile" "latest" "/usr/bin/" "*_linux_amd64"
|
||||||
$STD cargo install-update -a
|
|
||||||
$STD su -c "cargo install --list | grep 'stylus' | cut -d' ' -f2 | sed 's/^v//;s/:$//' > ~/.stylus"
|
|
||||||
msg_ok "Updated $APP"
|
msg_ok "Updated $APP"
|
||||||
|
|
||||||
msg_info "Starting $APP"
|
msg_info "Starting $APP"
|
||||||
|
@ -4,14 +4,14 @@
|
|||||||
"categories": [
|
"categories": [
|
||||||
4
|
4
|
||||||
],
|
],
|
||||||
"date_created": "2025-09-05",
|
"date_created": "2025-09-06",
|
||||||
"type": "ct",
|
"type": "ct",
|
||||||
"updateable": true,
|
"updateable": true,
|
||||||
"privileged": false,
|
"privileged": false,
|
||||||
"interface_port": 8000,
|
"interface_port": 8000,
|
||||||
"documentation": "https://mmastrac.github.io/stylus/",
|
"documentation": "https://mmastrac.github.io/stylus/",
|
||||||
"website": "https://github.com/mmastrac/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",
|
"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.",
|
"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": [
|
"install_methods": [
|
||||||
@ -19,9 +19,9 @@
|
|||||||
"type": "default",
|
"type": "default",
|
||||||
"script": "ct/stylus.sh",
|
"script": "ct/stylus.sh",
|
||||||
"resources": {
|
"resources": {
|
||||||
"cpu": 2,
|
"cpu": 1,
|
||||||
"ram": 2048,
|
"ram": 1024,
|
||||||
"hdd": 8,
|
"hdd": 2,
|
||||||
"os": "debian",
|
"os": "debian",
|
||||||
"version": "12"
|
"version": "12"
|
||||||
}
|
}
|
||||||
|
@ -13,28 +13,14 @@ setting_up_container
|
|||||||
network_check
|
network_check
|
||||||
update_os
|
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"
|
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 stylus init /opt/stylus/
|
||||||
$STD su -c "cargo install --list | grep 'stylus' | cut -d' ' -f2 | sed 's/^v//;s/:$//' > ~/.stylus"
|
msg_ok "Configured Stylus"
|
||||||
msg_ok "Installed Stylus"
|
|
||||||
|
|
||||||
msg_info "Creating service"
|
msg_info "Creating service"
|
||||||
|
|
||||||
cat <<EOF >/etc/systemd/system/stylus.service
|
cat <<EOF >/etc/systemd/system/stylus.service
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=Stylus Service
|
Description=Stylus Service
|
||||||
@ -42,7 +28,7 @@ After=network.target
|
|||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
Type=simple
|
Type=simple
|
||||||
ExecStart=$HOME/.cargo/bin/stylus run /opt/stylus
|
ExecStart=stylus run /opt/stylus/
|
||||||
Restart=on-failure
|
Restart=on-failure
|
||||||
RestartSec=5
|
RestartSec=5
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user