Update iventoy-install.sh

fix spacing in service file
This commit is contained in:
tteckster
2024-06-06 22:24:44 -04:00
committed by Sam Heinz
parent 9e8d8561c9
commit fd161a0b11

View File

@@ -32,18 +32,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