mirror of https://github.com/tteck/Proxmox.git
Compare commits
3 Commits
32375279fd
...
0a35b1a5bb
Author | SHA1 | Date |
---|---|---|
|
0a35b1a5bb | |
|
c10903942f | |
|
7d224a726f |
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue