bird: print config file with line numbers to improve debugging (#411578)

Sandro 21a356df 5b5aa069

Changed files
+1 -1
nixos
modules
services
networking
+1 -1
nixos/modules/services/networking/bird.nix
···
checkPhase = optionalString cfg.checkConfig ''
ln -s $out bird.conf
${cfg.preCheckConfig}
-
bird -d -p -c bird.conf
+
bird -d -p -c bird.conf || { exit=$?; cat -n bird.conf; exit $exit; }
'';
};