Compare commits

...

7 Commits

Author SHA1 Message Date
community-scripts-pr-app[bot]
cc40b5957d
Update CHANGELOG.md (#1420)
Some checks failed
Auto Update .app-headers and Create PR / update-app-headers (push) Has been cancelled
Create Changelog Pull Request / update-changelog-pull-request (push) Has been cancelled
Merge main into update-app-headers / merge-main (push) Has been cancelled
Shellcheck / Shellcheck (push) Has been cancelled
2025-01-11 11:50:39 +01:00
community-scripts-pr-app[bot]
92020fed07
Update CHANGELOG.md (#1419)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-01-11 10:06:26 +01:00
Michel Roegl-Brunner
1476d1b6c4
Update prometheus-install.sh: Service creation fix (#1417) 2025-01-11 09:55:36 +01:00
Michel Roegl-Brunner
0d8dcd5643
Update prometheus-alertmanager-install.sh: Service Creation Fix (#1418) 2025-01-11 09:55:06 +01:00
community-scripts-pr-app[bot]
2347a669f2
Update CHANGELOG.md (#1415) 2025-01-11 09:35:02 +01:00
Andy Grunwald
6decf14d2e
Prometheus: Fix installation via creating the service file (#1416) 2025-01-11 09:33:21 +01:00
Kyle Kroboth
26d73317e8
LubeLogger CT vehicle tag typo fix (#1413) 2025-01-11 07:36:23 +01:00
4 changed files with 17 additions and 6 deletions

View File

@ -16,6 +16,17 @@ All LXC instances created using this repository come pre-installed with Midnight
> [!IMPORTANT]
Do not break established syntax in this file, as it is automatically updated by a Github Workflow
## 2025-01-11
### Changed
### 🚀 Updated Scripts
- Prometheus: Fix installation via creating the service file [@andygrunwald](https://github.com/andygrunwald) ([#1416](https://github.com/community-scripts/ProxmoxVE/pull/1416))
- Update prometheus-install.sh: Service creation fix [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1417](https://github.com/community-scripts/ProxmoxVE/pull/1417))
- Update prometheus-alertmanager-install.sh: Service Creation Fix [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1418](https://github.com/community-scripts/ProxmoxVE/pull/1418))
- Fix: LubeLogger CT vehicle tag typo [@kkroboth](https://github.com/kkroboth) ([#1413](https://github.com/community-scripts/ProxmoxVE/pull/1413))
## 2025-01-10
### Changed

View File

@ -7,7 +7,7 @@ source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/m
# App Default Values
APP="LubeLogger"
var_tags="verhicle;car"
var_tags="vehicle;car"
var_cpu="1"
var_ram="512"
var_disk="2"

View File

@ -33,7 +33,7 @@ msg_ok "Installed Prometheus Alertmanager"
msg_info "Creating Service"
cat <<EOF >/etc/systemd/system/prometheus-alertmanager.service
echo "[Unit]
[Unit]
Description=Prometheus Alertmanager
Wants=network-online.target
After=network-online.target
@ -49,7 +49,7 @@ ExecStart=/usr/local/bin/alertmanager \
ExecReload=/bin/kill -HUP \$MAINPID
[Install]
WantedBy=multi-user.target"
WantedBy=multi-user.target
EOF
systemctl enable -q --now prometheus-alertmanager
msg_ok "Created Service"

View File

@ -32,8 +32,8 @@ echo "${RELEASE}" >/opt/${APPLICATION}_version.txt
msg_ok "Installed Prometheus"
msg_info "Creating Service"
cat <<EOF >/etc/systemd/system/prometheus.service"
echo "[Unit]
cat <<EOF >/etc/systemd/system/prometheus.service
[Unit]
Description=Prometheus
Wants=network-online.target
After=network-online.target
@ -49,7 +49,7 @@ ExecStart=/usr/local/bin/prometheus \
ExecReload=/bin/kill -HUP \$MAINPID
[Install]
WantedBy=multi-user.target"
WantedBy=multi-user.target
EOF
systemctl enable -q --now prometheus
msg_ok "Created Service"