- oxidized user created on all 4 Dell PowerConnect switches (privilege 1) - Configs pulled and pushed to KNEL/network-device-configs on Gitea - SSH key generated on tsys-librenms, added to Gitea for auto-push - Cisco router (pfv-rrinfra-rtr) blocked: fan failure floods console (#431) - UNPoller fully operational with real UniFi credentials 💘 Generated with Crush Assisted-by: Crush:glm-5.2
8 lines
356 B
Bash
8 lines
356 B
Bash
#!/usr/bin/env bash
|
|
# Oxidized post-push hook: auto-push to Gitea after each config change
|
|
# Mounted into container at /home/oxidized/.config/oxidized/hooks/checkout/git-push.sh
|
|
set -euo pipefail
|
|
cd "$1"
|
|
export GIT_SSH_COMMAND="ssh -o StrictHostKeyChecking=accept-new -i /home/oxidized/.config/oxidized/.ssh/id_ed25519"
|
|
git push origin master 2>&1 || true
|