Commit Graph

10185 Commits

Author SHA1 Message Date
amin
30ab7d682a edited for new comments 2026-05-25 17:51:32 +02:00
Amin Gholizad
d945f8bc2b Merge branch 'community-scripts:main' into submit/koffan 2026-05-25 09:39:27 +02:00
CanbiZ (MickLesk)
c6e8e378f5 Merge pull request #1860 from steveonjava/feat/hermesagent-gateway-enable
fix(hermesagent): enable gateway user service after hermes-setup
2026-05-25 07:54:30 +02:00
Stephen Chin
5f0200032e fix(hermesagent): enable gateway user service after hermes-setup
If hermes setup created a user service for the gateway, enable and
start it as the hermes user. Linger is pre-enabled so the service
survives without an interactive session.
2026-05-24 16:04:14 -07:00
CanbiZ (MickLesk)
d4154f34e5 Merge pull request #1859 from steveonjava/feat/hermesagent-setup-helper
Feat/hermesagent setup helper
2026-05-24 23:04:11 +02:00
Stephen Chin
965d0ff1d4 fix(hermesagent): remove redundant guards from hermes-setup; restore completion message wording 2026-05-24 13:18:43 -07:00
Stephen Chin
c80dbaa5e6 feat(hermesagent): add hermes-setup helper script for first-time setup
- Add /usr/bin/hermes-setup that runs hermes setup as root, allowing
  optional components (TTS engines, browsers, etc.) to be installed,
  then restores ownership and permissions on /home/hermes
- Update login hint to reference hermes-setup
- Update completion message to guide users to hermes-setup and note
  that the gateway service should be installed as a user service
- Update JSON note to reflect new setup flow
2026-05-24 11:58:58 -07:00
CanbiZ (MickLesk)
6a47c17792 versionfile 2026-05-24 10:52:34 +02:00
CanbiZ (MickLesk)
d9439e7931 Change Version file 2026-05-24 10:52:10 +02:00
CanbiZ (MickLesk)
d591db4a18 wrong Url 2026-05-24 09:07:18 +02:00
github-actions[bot]
9a2657ebc9 chore: update app headers [skip ci] 2026-05-23 19:42:32 +00:00
tremor021
0487d242e2 add ezBookkeeping script 2026-05-23 21:42:14 +02:00
github-actions[bot]
863a4ea36e chore: update app headers [skip ci] 2026-05-22 18:36:25 +00:00
Michel Roegl-Brunner
6116c3f871 add music seerr 2026-05-22 20:35:52 +02:00
CanbiZ (MickLesk)
82c3e98b96 Merge pull request #1854 from community-scripts/arm64-github-workflows
workflows: add arm64 support considerations
2026-05-22 19:21:50 +02:00
Sam Heinz
7088b1e6b3 add has_arm: false to json files 2026-05-23 00:09:32 +10:00
Sam Heinz
4eecc6ad70 update files in .github to support arm64 2026-05-22 23:58:38 +10:00
Sam Heinz
8e477b1fca set 'var_arm64' to no for all cts 2026-05-22 23:44:47 +10:00
Sam Heinz
a9460e9994 update .gitignore 2026-05-22 23:26:06 +10:00
Sam Heinz
3a909e4edb remove temporary arm64 files 2026-05-22 23:25:59 +10:00
Michel Roegl-Brunner
2ca3553c9a Merge pull request #1841 from tomfrenzel/matterjs-sysctl
feat(matterjs-server): add sysctl rio rules
2026-05-22 15:14:52 +02:00
amin
e04afa9bd0 Create koffan.json 2026-05-21 20:35:27 +02:00
amin
f21ba41f5a Updated using docs 2026-05-21 20:35:27 +02:00
amin
bb04e21e6a Updated to current template
create the data folder outside for easier cleaning

added build essentials

Update koffan.sh
2026-05-21 18:52:00 +02:00
MickLesk
6e81aff07e Add support for Proxmox VE 9.2
Update pve_check logic and messages to allow Proxmox VE 9.2 across scripts. Adjusted version bounds (minor <= 2), regex checks (9\.[0-2]), and user-facing error text in misc/core.func, misc/vm-core.func and multiple vm/* scripts (allstarlink, archlinux, cachyos, debian-13, docker-vm-debug, nextcloud, openwrt, opnsense, owncloud, ubuntu2204, ubuntu2404, ubuntu2410, umbrel-os, unifi-os-server). No functional changes beyond expanding supported PVE minor version range and updating messages.
2026-05-21 16:40:30 +02:00
MickLesk
bc7e0f5256 fixes 2026-05-21 16:30:18 +02:00
MickLesk
894939d80c finalize 2026-05-21 16:25:03 +02:00
MickLesk
becfef6c42 Merge branch 'main' of https://github.com/community-scripts/ProxmoxVED 2026-05-21 16:24:03 +02:00
MickLesk
488884b175 fixes 2026-05-21 16:24:00 +02:00
Michel Roegl-Brunner
dbe0c6a37f arr-stack: add auto IP allocation with ping check
Third IP entry mode "auto": user supplies a starting IP, a range
(10.0.0.50-99), or comma-separated ranges; orchestrator walks the
candidates with `ping -c 1 -W 1` and grabs the first N that don't
respond. Skips the gateway and any IPs already assigned this run.
Confirms the picks via yes/no whiptail before locking them in.

Adds iputils-ping to ensure_dependencies.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-21 14:49:38 +02:00
Michel Roegl-Brunner
fa71af52ed arr-stack: reuse core/tools.func, use $STD, surface whiptail cancels
- Source misc/core.func and misc/tools.func; reuse ensure_dependencies,
  color/formatting/icons.
- Override silent() with a simple log-to-file wrapper so set -e and the
  EXIT trap own all failure handling; apply $STD to the curl download
  and the bash install in install_loop.
- Replace every "|| exit 0" whiptail bailout with a labeled cancelled()
  call so silent exits become diagnosable.
- EXIT trap now prints orphan CTID cleanup hints + the last 20 lines of
  the silent log on non-zero exit.
- Drop CLI flag parsing (--dry-run/--help) and inline comments.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-21 14:43:57 +02:00
github-actions[bot]
4b9fd57220 chore: update app headers [skip ci] 2026-05-21 12:15:42 +00:00
Michel Roegl-Brunner
9819a07e4d add arr-stack expiremtn 2026-05-21 14:14:52 +02:00
MickLesk
6d86ce6b8f Merge branch 'main' of https://github.com/community-scripts/ProxmoxVED 2026-05-21 11:58:18 +02:00
MickLesk
37c3e34b99 cleanup 2026-05-21 11:58:07 +02:00
github-actions[bot]
32281d8ba3 chore: update app headers [skip ci] 2026-05-21 09:56:14 +00:00
MickLesk
09e76166c5 cleanuip 2026-05-21 11:55:56 +02:00
Tom Frenzel
f0ec3408b8 feat(matterjs-server): add systcl rio rules 2026-05-21 08:33:16 +02:00
CanbiZ (MickLesk)
c1b5ae9836 Merge pull request #1840 from tomfrenzel/matterjs-fixes
fix(matterjs-server): use local install
2026-05-20 16:05:50 +02:00
Tom Frenzel
a05393ee23 chore(matterjs-server): use matter icon 2026-05-20 15:58:25 +02:00
Tom Frenzel
47fc14acd6 fix(matterjs-server): use local install 2026-05-20 15:56:13 +02:00
MickLesk
ac72714135 Merge branch 'main' of https://github.com/community-scripts/ProxmoxVED 2026-05-20 15:22:32 +02:00
MickLesk
5f7ec3aed8 typ 2026-05-20 15:22:30 +02:00
github-actions[bot]
0f5f3e87f1 chore: update app headers [skip ci] 2026-05-20 13:20:47 +00:00
MickLesk
75fac84d54 format json 2026-05-20 15:20:22 +02:00
MickLesk
31e8c11d6c matterjs 2026-05-20 15:20:03 +02:00
MickLesk
b7a8835bbb finalize profilarr 2026-05-20 15:06:09 +02:00
MickLesk
5f8c796d8a Merge branch 'main' of https://github.com/community-scripts/ProxmoxVED 2026-05-20 15:03:32 +02:00
MickLesk
fddd9ba769 feat(profilarr): streamline Deno installation and configuration setup 2026-05-20 15:03:30 +02:00
github-actions[bot]
c427689c6e chore: update app headers [skip ci] 2026-05-20 12:45:09 +00:00