Compare commits

...

5 Commits

Author SHA1 Message Date
CanbiZ d843438972
Merge a0c99720f2 into a40795a5d4 2024-06-27 07:46:28 +00:00
CanbiZ a0c99720f2
enable all features after create 2024-06-27 09:46:25 +02:00
CanbiZ 1cca5067b2
remove locale 2024-06-27 09:39:21 +02:00
tteckster a40795a5d4
Update scrutiny-install.sh
fixes https://github.com/tteck/Proxmox/issues/3269
2024-06-26 12:40:15 -04:00
tteckster a87b6c8a2b
Update CHANGELOG.md 2024-06-26 12:15:18 -04:00
3 changed files with 9 additions and 2 deletions

View File

@ -9,6 +9,13 @@
- All LXC instances created using this repository come pre-installed with Midnight Commander, which is a command-line tool (`mc`) that offers a user-friendly file and directory management interface for the terminal environment. - All LXC instances created using this repository come pre-installed with Midnight Commander, which is a command-line tool (`mc`) that offers a user-friendly file and directory management interface for the terminal environment.
## 2024-06-26
### Changed
- **Scrutiny LXC**
- NEW Script
## 2024-06-14 ## 2024-06-14
### Changed ### Changed

View File

@ -55,7 +55,6 @@ $STD apt-get install -y erlang-base \
erlang-runtime-tools erlang-snmp erlang-ssl \ erlang-runtime-tools erlang-snmp erlang-ssl \
erlang-syntax-tools erlang-tftp erlang-tools erlang-xmerl \ erlang-syntax-tools erlang-tftp erlang-tools erlang-xmerl \
rabbitmq-server rabbitmq-server
sudo sh -c 'echo "LANG=en_US.UTF-8" > /etc/default/locale && . /etc/default/locale'
msg_ok "RabbitMQ server installed" msg_ok "RabbitMQ server installed"
msg_info "Starting RabbitMQ service" msg_info "Starting RabbitMQ service"
@ -64,6 +63,7 @@ msg_ok "RabbitMQ service started"
msg_info "Enabling RabbitMQ management plugin" msg_info "Enabling RabbitMQ management plugin"
$STD rabbitmq-plugins enable rabbitmq_management $STD rabbitmq-plugins enable rabbitmq_management
$STD rabbitmqctl enable_feature_flag all
msg_ok "RabbitMQ management plugin enabled" msg_ok "RabbitMQ management plugin enabled"
msg_info "Create User" msg_info "Create User"

View File

@ -27,7 +27,7 @@ msg_ok "Installed Dependencies"
msg_info "Installing Scrutiny WebApp" msg_info "Installing Scrutiny WebApp"
mkdir -p /opt/scrutiny/{config,web,bin} mkdir -p /opt/scrutiny/{config,web,bin}
RELEASE=$(curl -s https://api.github.com/repos/analogj/scrutiny/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }') RELEASE=$(curl -s https://api.github.com/repos/analogj/scrutiny/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
echo "${RELEASE}" >/opt/${APP}_version.txt echo "${RELEASE}" >/opt/${APPLICATION}_version.txt
wget -q -O /opt/scrutiny/config/scrutiny.yaml https://raw.githubusercontent.com/AnalogJ/scrutiny/master/example.scrutiny.yaml wget -q -O /opt/scrutiny/config/scrutiny.yaml https://raw.githubusercontent.com/AnalogJ/scrutiny/master/example.scrutiny.yaml
wget -q -O /opt/scrutiny/bin/scrutiny-web-linux-amd64 "https://github.com/AnalogJ/scrutiny/releases/download/${RELEASE}/scrutiny-web-linux-amd64" wget -q -O /opt/scrutiny/bin/scrutiny-web-linux-amd64 "https://github.com/AnalogJ/scrutiny/releases/download/${RELEASE}/scrutiny-web-linux-amd64"
wget -q -O /opt/scrutiny/web/scrutiny-web-frontend.tar.gz "https://github.com/AnalogJ/scrutiny/releases/download/${RELEASE}/scrutiny-web-frontend.tar.gz" wget -q -O /opt/scrutiny/web/scrutiny-web-frontend.tar.gz "https://github.com/AnalogJ/scrutiny/releases/download/${RELEASE}/scrutiny-web-frontend.tar.gz"