1
0
liminix/pkgs/s6-rc-up-tree/default.nix
Daniel Barlow 7e2b0068e6 nixfmt-rfc-style
There is nothing in this commit except for the changes made by
nix-shell -p nixfmt-rfc-style --run "nixfmt ."

If this has mucked up your open branches then sorry about that. You
can probably nixfmt them to match before merging
2025-02-10 21:55:08 +00:00

69 lines
1.9 KiB
Nix

{
lualinux,
writeFennel,
anoia,
fennel,
stdenv,
fennelrepl,
}:
stdenv.mkDerivation {
name = "s6-rc-up-tree";
src = ./.;
nativeBuildInputs = [ fennelrepl ];
# propagatedBuildInputs = [ s6-rc-up-tree ];
installPhase = ''
mkdir -p $out/bin
cp -p ${
writeFennel "s6-rc-up-tree" {
packages = [
fennel
lualinux
];
mainFunction = "run";
} ./s6-rc-up-tree.fnl
} $out/bin/s6-rc-up-tree
'';
postBuild = ''
export PATH=./scripts:$PATH
patchShebangs ./scripts
export TEST_LOG=./log
fail(){ cat $TEST_LOG | od -c; exit 1; }
expect(){
test "$(echo $(cat $TEST_LOG))" = "$@" || fail;
}
# given a service with no rdepends, starts only that service
fennelrepl ./test.fnl ${./test-services} turmeric
expect "turmeric"
# given a controlled service with no rdepends, starts only that service
fennelrepl ./test.fnl ${./test-services} wombat
expect "wombat"
# uncontrolled rdepends start
fennelrepl ./test.fnl ${./test-services} thyme
expect "thyme rosemary"
# stopped controlled rdepends don't start
fennelrepl ./test.fnl ${./test-services} enables-wan
expect "enables-wan" # not wattle, even though it depends
# started controlled rdepends are running, so starting them is harmless
# descendants which depend on a _different_ controlled service,
# which is down, don't start:
# Given:
# - modeswitch is controlled
# - atz is controlled
# - atz => modeswitch
# - ifconfig => atz
# Then: if atz is down, ifconfig should not start when modeswitch is started
fennelrepl ./test.fnl ${./test-services} modeswitch
expect "modeswitch"
# descendants which depend on a _different_ controlled service, which is up, do start
ATZ=up fennelrepl ./test.fnl ${./test-services} modeswitch
set -x
expect "modeswitch atz ifconfig"
'';
}