Recent content by nqirod

  1. N

    [SOLVED] Issue with post-stop phase in hookscripts on Debian Bookworm / Proxmox 8

    Oh, i saw i had conflict with firmware-linux-free, after i mark hold this package and dist-upgrade, it works fine, even if I don't know why, haha. I mak this thread as solved.
  2. N

    [SOLVED] Issue with post-stop phase in hookscripts on Debian Bookworm / Proxmox 8

    Hello, thanks for replying. Yup, i know the output is not in the task log. For testing, I write files at each step to check if they work. #!/bin/bash if [ "$2" == "pre-start" ]; then echo 1 >> /tmp/1 elif [ "$2" == "post-start" ]; then echo 1 >> /tmp/2 elif [ "$2" == "pre-stop" ]...
  3. N

    [SOLVED] Issue with post-stop phase in hookscripts on Debian Bookworm / Proxmox 8

    Hello, I've installed Proxmox 8 on a new Host in Debian bookworm (6.2.16-3-pve) and i noticed that the phase "post-stop" in my hookscript is not executed. It seems that the "post-stop" argument is not passed, i tried with a simple bash script and all the phases are ran but the post-stop one. Am...