mirror of https://github.com/tteck/Proxmox.git
Compare commits
No commits in common. "0a35b1a5bb3bb8c61aa1e8f95e14048667263101" and "32375279fd59f2a78a7b2e2ad7e5483c709943c2" have entirely different histories.
0a35b1a5bb
...
32375279fd
|
@ -8,6 +8,7 @@
|
||||||
<h3 align="center">All notable changes to this project will be documented in this file.</h3>
|
<h3 align="center">All notable changes to this project will be documented in this file.</h3>
|
||||||
|
|
||||||
- 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.
|
||||||
|
- 🚨 **The scripts in the repository will no longer provide support for Proxmox VE 7 starting from July 2024 (scripts will not execute on PVE7). Subsequent <a href='https://forum.proxmox.com/threads/proxmox-ve-support-lifecycle.35755/' target='_blank' rel='noopener noreferrer'>Proxmox VE - Support Lifecycle</a>**
|
||||||
|
|
||||||
## 2024-06-06
|
## 2024-06-06
|
||||||
|
|
||||||
|
@ -15,8 +16,6 @@
|
||||||
|
|
||||||
- **Petio LXC**
|
- **Petio LXC**
|
||||||
- NEW Script
|
- NEW Script
|
||||||
- **Website**
|
|
||||||
- Important notices will now be displayed on the landing page.
|
|
||||||
|
|
||||||
## 2024-06-04
|
## 2024-06-04
|
||||||
|
|
||||||
|
|
|
@ -31,18 +31,18 @@ msg_ok "Installed iVentoy"
|
||||||
msg_info "Creating Service"
|
msg_info "Creating Service"
|
||||||
cat <<EOF >/etc/systemd/system/iventoy.service
|
cat <<EOF >/etc/systemd/system/iventoy.service
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=iVentoy PXE Booter
|
Description =iVentoy PXE Booter
|
||||||
Documentation=https://www.iventoy.com
|
Documentation =https://www.iventoy.com
|
||||||
Wants=network-online.target
|
Wants =network-online.target
|
||||||
[Service]
|
[Service]
|
||||||
Type=forking
|
Type =forking
|
||||||
Environment=IVENTOY_API_ALL=1
|
Environment =IVENTOY_API_ALL=1
|
||||||
Environment=IVENTOY_AUTO_RUN=1
|
Environment =IVENTOY_AUTO_RUN=1
|
||||||
Environment=LIBRARY_PATH=/opt/iventoy/lib/lin64
|
Environment =LIBRARY_PATH=/opt/iventoy/lib/lin64
|
||||||
Environment=LD_LIBRARY_PATH=/opt/iventoy/lib/lin64
|
Environment =LD_LIBRARY_PATH=/opt/iventoy/lib/lin64
|
||||||
ExecStart=sh ./iventoy.sh -R start
|
ExecStart =sh ./iventoy.sh -R start
|
||||||
WorkingDirectory=/opt/iventoy
|
WorkingDirectory =/opt/iventoy
|
||||||
Restart=on-failure
|
Restart =on-failure
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
EOF
|
EOF
|
||||||
|
|
Loading…
Reference in New Issue