Compare commits

..

2 Commits

Author SHA1 Message Date
tteckster 3f5fc485e6
Update yunohost-install.sh
fixes https://github.com/tteck/Proxmox/issues/2380
2024-01-22 04:44:50 -05:00
tteckster e690bcf08f
Update agentdvr-install.sh
- change service name
- fixes https://github.com/tteck/Proxmox/issues/2379
2024-01-22 04:39:31 -05:00
2 changed files with 3 additions and 2 deletions

View File

@ -36,7 +36,7 @@ chmod +x ./Agent
msg_ok "Installed AgentDVR" msg_ok "Installed AgentDVR"
msg_info "Creating Service" msg_info "Creating Service"
cat <<EOF >/etc/systemd/system/agentdvr.service cat <<EOF >/etc/systemd/system/AgentDVR.service
[Unit] [Unit]
Description=AgentDVR Description=AgentDVR
@ -51,7 +51,7 @@ RestartSec=5
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target
EOF EOF
systemctl enable -q --now agentdvr.service systemctl enable -q --now AgentDVR.service
msg_ok "Created Service" msg_ok "Created Service"
motd_ssh motd_ssh

View File

@ -24,6 +24,7 @@ $STD apt-get install -y ca-certificates
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
msg_info "Installing YunoHost (Patience)" msg_info "Installing YunoHost (Patience)"
touch /etc/.pve-ignore.resolv.conf
curl -sSLo /usr/share/keyrings/deb.sury.org-php.gpg https://packages.sury.org/php/apt.gpg curl -sSLo /usr/share/keyrings/deb.sury.org-php.gpg https://packages.sury.org/php/apt.gpg
$STD bash <(curl -fsSL https://install.yunohost.org) -a $STD bash <(curl -fsSL https://install.yunohost.org) -a
msg_ok "Installed YunoHost" msg_ok "Installed YunoHost"