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