mirror of https://github.com/tteck/Proxmox.git
Compare commits
4 Commits
b60c215223
...
b706c90168
Author | SHA1 | Date |
---|---|---|
|
b706c90168 | |
|
b366d4e7ee | |
|
a80a0e6667 | |
|
65dbf8a75b |
|
@ -2,6 +2,15 @@
|
|||
# Change Log
|
||||
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
|
||||
|
||||
### Changed
|
||||
|
|
|
@ -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)
|
||||
|
|
@ -41,6 +41,8 @@ if [[ $INFLUX == "2" ]]; then
|
|||
$STD apt-get install -y influxdb2
|
||||
else
|
||||
$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
|
||||
$STD systemctl enable --now influxdb
|
||||
msg_ok "Installed InfluxDB"
|
||||
|
|
Loading…
Reference in New Issue