Compare commits

...

3 Commits

Author SHA1 Message Date
tteckster 0a35b1a5bb
Update iventoy-install.sh
fix spacing in service file
2024-06-06 22:24:44 -04:00
tteckster c10903942f
Update CHANGELOG.md 2024-06-06 17:20:21 -04:00
tteckster 7d224a726f
Update CHANGELOG.md 2024-06-06 17:16:23 -04:00
2 changed files with 13 additions and 12 deletions

View File

@ -8,7 +8,6 @@
<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
@ -16,6 +15,8 @@
- **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