mirror of https://github.com/tteck/Proxmox.git
Fix update path for PeaNUT following v3 fix (#3954)
This commit is contained in:
parent
b4732cd8e9
commit
612979a040
|
@ -68,6 +68,8 @@ function update_script() {
|
||||||
pnpm i &>/dev/null
|
pnpm i &>/dev/null
|
||||||
pnpm run build &>/dev/null
|
pnpm run build &>/dev/null
|
||||||
cp -r .next/static .next/standalone/.next/
|
cp -r .next/static .next/standalone/.next/
|
||||||
|
mkdir -p /opt/peanut/.next/standalone/config
|
||||||
|
ln -sf /etc/peanut/settings.yml /opt/peanut/.next/standalone/config/settings.yml
|
||||||
systemctl start peanut
|
systemctl start peanut
|
||||||
echo "${RELEASE}" >/opt/${APP}_version.txt
|
echo "${RELEASE}" >/opt/${APP}_version.txt
|
||||||
msg_ok "Updated $APP to ${RELEASE}"
|
msg_ok "Updated $APP to ${RELEASE}"
|
||||||
|
|
|
@ -45,14 +45,14 @@ $STD pnpm i
|
||||||
$STD pnpm run build
|
$STD pnpm run build
|
||||||
cp -r .next/static .next/standalone/.next/
|
cp -r .next/static .next/standalone/.next/
|
||||||
mkdir -p /opt/peanut/.next/standalone/config
|
mkdir -p /opt/peanut/.next/standalone/config
|
||||||
cat <<EOF >/opt/peanut/.next/standalone/config/settings.yml
|
mkdir -p /etc/peanut/
|
||||||
|
cat <<EOF >/etc/peanut/settings.yml
|
||||||
WEB_HOST: 0.0.0.0
|
WEB_HOST: 0.0.0.0
|
||||||
WEB_PORT: 3000
|
WEB_PORT: 3000
|
||||||
NUT_HOST: 0.0.0.0
|
NUT_HOST: 0.0.0.0
|
||||||
NUT_PORT: 3493
|
NUT_PORT: 3493
|
||||||
EOF
|
EOF
|
||||||
mkdir -p /etc/peanut
|
ln -sf /etc/peanut/settings.yml /opt/peanut/.next/standalone/config/settings.yml
|
||||||
ln -sf /opt/peanut/.next/standalone/config/settings.yml /etc/peanut/settings.yml
|
|
||||||
msg_ok "Installed Peanut"
|
msg_ok "Installed Peanut"
|
||||||
|
|
||||||
msg_info "Creating Service"
|
msg_info "Creating Service"
|
||||||
|
|
Loading…
Reference in New Issue