Compare commits

..

No commits in common. "0a35b1a5bb3bb8c61aa1e8f95e14048667263101" and "32375279fd59f2a78a7b2e2ad7e5483c709943c2" have entirely different histories.

2 changed files with 12 additions and 13 deletions

View File

@ -8,6 +8,7 @@
<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.
- 🚨 **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
@ -15,8 +16,6 @@
- **Petio LXC**
- NEW Script
- **Website**
- Important notices will now be displayed on the landing page.
## 2024-06-04

View File

@ -31,18 +31,18 @@ msg_ok "Installed iVentoy"
msg_info "Creating Service"
cat <<EOF >/etc/systemd/system/iventoy.service
[Unit]
Description=iVentoy PXE Booter
Documentation=https://www.iventoy.com
Wants=network-online.target
Description =iVentoy PXE Booter
Documentation =https://www.iventoy.com
Wants =network-online.target
[Service]
Type=forking
Environment=IVENTOY_API_ALL=1
Environment=IVENTOY_AUTO_RUN=1
Environment=LIBRARY_PATH=/opt/iventoy/lib/lin64
Environment=LD_LIBRARY_PATH=/opt/iventoy/lib/lin64
ExecStart=sh ./iventoy.sh -R start
WorkingDirectory=/opt/iventoy
Restart=on-failure
Type =forking
Environment =IVENTOY_API_ALL=1
Environment =IVENTOY_AUTO_RUN=1
Environment =LIBRARY_PATH=/opt/iventoy/lib/lin64
Environment =LD_LIBRARY_PATH=/opt/iventoy/lib/lin64
ExecStart =sh ./iventoy.sh -R start
WorkingDirectory =/opt/iventoy
Restart =on-failure
[Install]
WantedBy=multi-user.target
EOF