Compare commits

...

4 Commits

Author SHA1 Message Date
tteckster b706c90168
Update CHANGELOG.MD 2023-04-15 08:12:23 -04:00
tteckster b366d4e7ee
Create USER_SUBMITTED_GUIDES.md
In order to contribute a guide on installing with Proxmox VE Helper Scripts, you should open a pull request that adds the guide to the `USER_SUBMITTED_GUIDES.md` file.
2023-04-15 08:03:29 -04:00
tteckster a80a0e6667
Update CHANGELOG.MD 2023-04-15 07:12:47 -04:00
tteckster 65dbf8a75b
Update influxdb-install.sh
Choosing InfluxDB v1 will result in Chronograf being installed automatically.
2023-04-15 07:10:50 -04:00
3 changed files with 17 additions and 0 deletions

View File

@ -2,6 +2,15 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## 2023-04-15
### Changed
- **InfluxDB LXC**
- Choosing InfluxDB v1 will result in Chronograf being installed automatically.
- **[User Submitted Guides](https://github.com/tteck/Proxmox/blob/main/USER_SUBMITTED_GUIDES.md)**
- Informative guides that demonstrate how to install various software packages using Proxmox VE Helper Scripts.
## 2023-04-14 ## 2023-04-14
### Changed ### Changed

6
USER_SUBMITTED_GUIDES.md Normal file
View File

@ -0,0 +1,6 @@
<h1><p align="center"> User Submitted Guides </a></p></h1>
<sub> In order to contribute a guide on installing with Proxmox VE Helper Scripts, you should open a pull request that adds the guide to the `USER_SUBMITTED_GUIDES.md` file. </sub>
[Installing Home Assistant OS using Proxmox 7](https://community.home-assistant.io/t/installing-home-assistant-os-using-proxmox-7/201835)

View File

@ -41,6 +41,8 @@ if [[ $INFLUX == "2" ]]; then
$STD apt-get install -y influxdb2 $STD apt-get install -y influxdb2
else else
$STD apt-get install -y influxdb $STD apt-get install -y influxdb
wget -q https://dl.influxdata.com/chronograf/releases/chronograf_1.10.1_amd64.deb
$STD dpkg -i chronograf_1.10.1_amd64.deb
fi fi
$STD systemctl enable --now influxdb $STD systemctl enable --now influxdb
msg_ok "Installed InfluxDB" msg_ok "Installed InfluxDB"