mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2025-11-05 10:52:49 +00:00
Compare commits
9 Commits
2024-12-06
...
2024-12-07
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
102669cd11 | ||
|
|
ae120c1e23 | ||
|
|
c056dd97ea | ||
|
|
5b2cbd3e99 | ||
|
|
cadae9796e | ||
|
|
9eb5cc022a | ||
|
|
52898b4edf | ||
|
|
e45aba86bd | ||
|
|
be4e6503d7 |
17
CHANGELOG.md
17
CHANGELOG.md
@@ -16,6 +16,23 @@ All LXC instances created using this repository come pre-installed with Midnight
|
|||||||
> [!IMPORTANT]
|
> [!IMPORTANT]
|
||||||
Do not break established syntax in this file, as it is automatically updated by a Github Workflow
|
Do not break established syntax in this file, as it is automatically updated by a Github Workflow
|
||||||
|
|
||||||
|
## 2024-12-07
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
### 🚀 Updated Scripts
|
||||||
|
|
||||||
|
- Zigbee2MQTT: Remove dev branch choice until v2.0.0 release [@havardthom](https://github.com/havardthom) ([#702](https://github.com/community-scripts/ProxmoxVE/pull/702))
|
||||||
|
- Fix Hoarder build failure by installing Chromium stable [@vhsdream](https://github.com/vhsdream) ([#723](https://github.com/community-scripts/ProxmoxVE/pull/723))
|
||||||
|
|
||||||
|
### 🌐 Website
|
||||||
|
|
||||||
|
- Bugfix: Include script name in website search [@havardthom](https://github.com/havardthom) ([#731](https://github.com/community-scripts/ProxmoxVE/pull/731))
|
||||||
|
|
||||||
|
### ❔ Unlabelled
|
||||||
|
|
||||||
|
- Fix broken build.func [@havardthom](https://github.com/havardthom) ([#736](https://github.com/community-scripts/ProxmoxVE/pull/736))
|
||||||
|
|
||||||
## 2024-12-06
|
## 2024-12-06
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
@@ -95,7 +95,7 @@ export default function CommandMenu() {
|
|||||||
{category.scripts.map((script) => (
|
{category.scripts.map((script) => (
|
||||||
<CommandItem
|
<CommandItem
|
||||||
key={`script:${script.slug}`}
|
key={`script:${script.slug}`}
|
||||||
value={script.slug}
|
value={`${script.slug}-${script.name}`}
|
||||||
onSelect={() => {
|
onSelect={() => {
|
||||||
setOpen(false);
|
setOpen(false);
|
||||||
router.push(`/scripts?id=${script.slug}`);
|
router.push(`/scripts?id=${script.slug}`);
|
||||||
|
|||||||
@@ -22,7 +22,8 @@ $STD apt-get install -y \
|
|||||||
sudo \
|
sudo \
|
||||||
gnupg \
|
gnupg \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
chromium \
|
chromium/stable \
|
||||||
|
chromium-common/stable \
|
||||||
mc
|
mc
|
||||||
msg_ok "Installed Dependencies"
|
msg_ok "Installed Dependencies"
|
||||||
|
|
||||||
|
|||||||
@@ -40,20 +40,8 @@ msg_info "Setting up Zigbee2MQTT Repository"
|
|||||||
$STD git clone --depth 1 https://github.com/Koenkk/zigbee2mqtt.git /opt/zigbee2mqtt
|
$STD git clone --depth 1 https://github.com/Koenkk/zigbee2mqtt.git /opt/zigbee2mqtt
|
||||||
msg_ok "Set up Zigbee2MQTT Repository"
|
msg_ok "Set up Zigbee2MQTT Repository"
|
||||||
|
|
||||||
read -r -p "Switch to Edge/dev branch? (y/N) " prompt
|
|
||||||
if [[ $prompt == "y" ]]; then
|
|
||||||
DEV="y"
|
|
||||||
else
|
|
||||||
DEV="n"
|
|
||||||
fi
|
|
||||||
|
|
||||||
msg_info "Installing Zigbee2MQTT"
|
msg_info "Installing Zigbee2MQTT"
|
||||||
cd /opt/zigbee2mqtt
|
cd /opt/zigbee2mqtt
|
||||||
if [[ $DEV == "y" ]]; then
|
|
||||||
$STD git fetch origin dev:dev
|
|
||||||
$STD git checkout dev
|
|
||||||
$STD git pull
|
|
||||||
fi
|
|
||||||
$STD npm ci
|
$STD npm ci
|
||||||
msg_ok "Installed Zigbee2MQTT"
|
msg_ok "Installed Zigbee2MQTT"
|
||||||
|
|
||||||
|
|||||||
@@ -504,7 +504,7 @@ install_script() {
|
|||||||
|
|
||||||
check_container_resources() {
|
check_container_resources() {
|
||||||
# Check actual RAM & Cores
|
# Check actual RAM & Cores
|
||||||
current_ram=$(free -m | awk '/^Mem:/{print $2}')
|
current_ram=$(free -m | awk 'NR==2{print $2}')
|
||||||
current_cpu=$(nproc)
|
current_cpu=$(nproc)
|
||||||
|
|
||||||
# Check whether the current RAM is less than the required RAM or the CPU cores are less than required
|
# Check whether the current RAM is less than the required RAM or the CPU cores are less than required
|
||||||
|
|||||||
Reference in New Issue
Block a user