mirror of
https://github.com/community-scripts/ProxmoxVE
synced 2025-02-07 08:19:17 +00:00
Compare commits
6 Commits
cea28353ab
...
8e6da073a2
Author | SHA1 | Date | |
---|---|---|---|
|
8e6da073a2 | ||
|
bcc6342f83 | ||
|
ca902c50fb | ||
|
69fe688418 | ||
|
2d9fcbb635 | ||
|
13afe3d289 |
@ -22,10 +22,12 @@ Do not break established syntax in this file, as it is automatically updated by
|
|||||||
|
|
||||||
### 🚀 Updated Scripts
|
### 🚀 Updated Scripts
|
||||||
|
|
||||||
|
- Fix Keycloak Update Function [@MickLesk](https://github.com/MickLesk) ([#762](https://github.com/community-scripts/ProxmoxVE/pull/762))
|
||||||
- Fix config bug in Alpine Vaultwarden [@havardthom](https://github.com/havardthom) ([#775](https://github.com/community-scripts/ProxmoxVE/pull/775))
|
- Fix config bug in Alpine Vaultwarden [@havardthom](https://github.com/havardthom) ([#775](https://github.com/community-scripts/ProxmoxVE/pull/775))
|
||||||
|
|
||||||
### 🌐 Website
|
### 🌐 Website
|
||||||
|
|
||||||
|
- Change MISC from red to green [@MickLesk](https://github.com/MickLesk) ([#815](https://github.com/community-scripts/ProxmoxVE/pull/815))
|
||||||
- Update some JSON Files for Website [@MickLesk](https://github.com/MickLesk) ([#812](https://github.com/community-scripts/ProxmoxVE/pull/812))
|
- Update some JSON Files for Website [@MickLesk](https://github.com/MickLesk) ([#812](https://github.com/community-scripts/ProxmoxVE/pull/812))
|
||||||
- Update Notes & Documentation for Proxmox Backup Server [@MickLesk](https://github.com/MickLesk) ([#804](https://github.com/community-scripts/ProxmoxVE/pull/804))
|
- Update Notes & Documentation for Proxmox Backup Server [@MickLesk](https://github.com/MickLesk) ([#804](https://github.com/community-scripts/ProxmoxVE/pull/804))
|
||||||
|
|
||||||
|
@ -65,18 +65,14 @@ apt-get update &>/dev/null
|
|||||||
apt-get -y upgrade &>/dev/null
|
apt-get -y upgrade &>/dev/null
|
||||||
|
|
||||||
RELEASE=$(curl -s https://api.github.com/repos/keycloak/keycloak/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
|
RELEASE=$(curl -s https://api.github.com/repos/keycloak/keycloak/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
|
||||||
msg_info "Downloading Keycloak v$RELEASE"
|
msg_info "Updating Keycloak to v$RELEASE"
|
||||||
cd /opt
|
cd /opt
|
||||||
wget -q https://github.com/keycloak/keycloak/releases/download/$RELEASE/keycloak-$RELEASE.tar.gz
|
wget -q https://github.com/keycloak/keycloak/releases/download/$RELEASE/keycloak-$RELEASE.tar.gz
|
||||||
$STD tar -xvf keycloak-$RELEASE.tar.gz
|
|
||||||
|
|
||||||
msg_info "Merging configuration files"
|
|
||||||
cp -r keycloak/conf keycloak-$RELEASE
|
|
||||||
cp -r keycloak/providers keycloak-$RELEASE
|
|
||||||
cp -r keycloak/themes keycloak-$RELEASE
|
|
||||||
|
|
||||||
msg_info "Updating Keycloak"
|
|
||||||
mv keycloak keycloak.old
|
mv keycloak keycloak.old
|
||||||
|
tar -xzf keycloak-$RELEASE.tar.gz
|
||||||
|
cp -r keycloak.old/conf keycloak-$RELEASE
|
||||||
|
cp -r keycloak.old/providers keycloak-$RELEASE
|
||||||
|
cp -r keycloak.old/themes keycloak-$RELEASE
|
||||||
mv keycloak-$RELEASE keycloak
|
mv keycloak-$RELEASE keycloak
|
||||||
|
|
||||||
msg_info "Delete temporary installation files"
|
msg_info "Delete temporary installation files"
|
||||||
|
@ -26,7 +26,7 @@ export const formattedBadge = (type: string) => {
|
|||||||
<Badge className="text-yellow-500/75 border-yellow-500/75">LXC</Badge>
|
<Badge className="text-yellow-500/75 border-yellow-500/75">LXC</Badge>
|
||||||
);
|
);
|
||||||
case "misc":
|
case "misc":
|
||||||
return <Badge className="text-red-500/75 border-red-500/75">MISC</Badge>;
|
return <Badge className="text-green-500/75 border-green-500/75">MISC</Badge>;
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
};
|
};
|
||||||
|
@ -28,7 +28,7 @@ $STD apt-get install -y syncthing
|
|||||||
$STD systemctl enable syncthing@root.service
|
$STD systemctl enable syncthing@root.service
|
||||||
systemctl start syncthing@root.service
|
systemctl start syncthing@root.service
|
||||||
sleep 5
|
sleep 5
|
||||||
sed -i "{s/127.0.0.1:8384/0.0.0.0:8384/g}" /root/.local/state/syncthing/config.xml
|
sed -i "{s/127.0.0.1:8384/0.0.0.0:8384/g}" /root/.config/syncthing/config.xml
|
||||||
systemctl restart syncthing@root.service
|
systemctl restart syncthing@root.service
|
||||||
msg_ok "Installed Syncthing"
|
msg_ok "Installed Syncthing"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user