1
0
liminix/tests/pseudofiles/fixture.nix

54 lines
1001 B
Nix
Raw Normal View History

2023-01-29 21:39:34 +00:00
{
pseudofile,
}:
let
2023-01-29 21:39:34 +00:00
inherit (pseudofile) dir;
structure = {
service = dir {
s6-linux-init-runleveld = dir {
notification-fd = {
file = "3";
};
2023-01-29 21:39:34 +00:00
run = {
file = ''
hello
world
2023-01-29 21:39:34 +00:00
'';
mode = "0755";
};
};
s6-linux-init-shutdownd = dir {
fifo = {
type = "i";
mode = "0600";
};
run = {
file = ''
s6-linux-init/bin/s6-linux-init-shutdownd -c "/etc/s6-linux-init/current" -g 3000
'';
2023-01-29 21:39:34 +00:00
mode = "0755";
};
};
s6-svscan-log = dir {
fifo = {
type = "i";
mode = "0600";
};
notification-fd = {
file = "3";
};
2023-01-29 21:39:34 +00:00
run = {
file = ''
gdsgdfgsdgf
2023-01-29 21:39:34 +00:00
'';
};
};
};
uncaught-logs = (dir { }) // {
mode = "2750";
};
2023-01-29 21:39:34 +00:00
};
in
pseudofile.write "pseudo.s6-init" structure