├── .gitignore ├── Makefile ├── README.md ├── VERSION ├── old-helpers ├── Makefile ├── README.md ├── VERSION ├── root │ ├── lib │ │ └── systemd │ │ │ └── system-sleep │ │ │ └── suspend-resume-all-vms │ └── usr │ │ ├── lib │ │ └── pve-helpers │ │ │ ├── qemu-server-hooks.sh │ │ │ ├── resume-all-vms.sh │ │ │ └── suspend-all-vms.sh │ │ └── sbin │ │ └── pin-vcpus.sh └── scripts │ └── pve-qemu-hooks.service └── root ├── etc └── systemd │ └── system │ └── pve-guests.service.d │ └── manual-start.conf ├── lib └── systemd │ └── system-sleep │ └── restart-vms └── var └── lib └── vz └── snippets └── exec-cmds /.gitignore: -------------------------------------------------------------------------------- 1 | *.deb 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayufan/pve-helpers/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayufan/pve-helpers/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.6.0 2 | -------------------------------------------------------------------------------- /old-helpers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayufan/pve-helpers/HEAD/old-helpers/Makefile -------------------------------------------------------------------------------- /old-helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayufan/pve-helpers/HEAD/old-helpers/README.md -------------------------------------------------------------------------------- /old-helpers/VERSION: -------------------------------------------------------------------------------- 1 | 0.2.0 2 | -------------------------------------------------------------------------------- /old-helpers/root/lib/systemd/system-sleep/suspend-resume-all-vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayufan/pve-helpers/HEAD/old-helpers/root/lib/systemd/system-sleep/suspend-resume-all-vms -------------------------------------------------------------------------------- /old-helpers/root/usr/lib/pve-helpers/qemu-server-hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayufan/pve-helpers/HEAD/old-helpers/root/usr/lib/pve-helpers/qemu-server-hooks.sh -------------------------------------------------------------------------------- /old-helpers/root/usr/lib/pve-helpers/resume-all-vms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayufan/pve-helpers/HEAD/old-helpers/root/usr/lib/pve-helpers/resume-all-vms.sh -------------------------------------------------------------------------------- /old-helpers/root/usr/lib/pve-helpers/suspend-all-vms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayufan/pve-helpers/HEAD/old-helpers/root/usr/lib/pve-helpers/suspend-all-vms.sh -------------------------------------------------------------------------------- /old-helpers/root/usr/sbin/pin-vcpus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayufan/pve-helpers/HEAD/old-helpers/root/usr/sbin/pin-vcpus.sh -------------------------------------------------------------------------------- /old-helpers/scripts/pve-qemu-hooks.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayufan/pve-helpers/HEAD/old-helpers/scripts/pve-qemu-hooks.service -------------------------------------------------------------------------------- /root/etc/systemd/system/pve-guests.service.d/manual-start.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayufan/pve-helpers/HEAD/root/etc/systemd/system/pve-guests.service.d/manual-start.conf -------------------------------------------------------------------------------- /root/lib/systemd/system-sleep/restart-vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayufan/pve-helpers/HEAD/root/lib/systemd/system-sleep/restart-vms -------------------------------------------------------------------------------- /root/var/lib/vz/snippets/exec-cmds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayufan/pve-helpers/HEAD/root/var/lib/vz/snippets/exec-cmds --------------------------------------------------------------------------------