remove support for sockets in pseudofiles
(1) we can't make them on a real filesystem except by running something that calls socket() (2) whyever would we want to?
This commit is contained in:
parent
aa1a2e5d75
commit
25d9da967c
3 changed files with 1 additions and 6 deletions
|
@ -41,7 +41,6 @@ let
|
|||
s6-linux-init-shutdownd = dir {
|
||||
fifo = {
|
||||
type = "i";
|
||||
subtype = "f";
|
||||
mode = "0600";
|
||||
};
|
||||
run = {
|
||||
|
@ -55,7 +54,6 @@ let
|
|||
s6-svscan-log = dir {
|
||||
fifo = {
|
||||
type = "i";
|
||||
subtype = "f";
|
||||
mode = "0600";
|
||||
};
|
||||
notification-fd = { file = "3"; };
|
||||
|
|
|
@ -20,7 +20,6 @@ let
|
|||
, file ? null
|
||||
, major ? null
|
||||
, minor ? null
|
||||
, subtype ? null
|
||||
}:
|
||||
let
|
||||
mode' = if mode != null then mode else
|
||||
|
@ -36,7 +35,7 @@ let
|
|||
else if type == "b" then "${line} ${major} ${minor}"
|
||||
else if type == "s" then "${line} ${target}"
|
||||
else if type == "l" then "${pathname} l ${target}"
|
||||
else if type == "i" then "${line} ${subtype}"
|
||||
else if type == "i" then "${line} f"
|
||||
else line)
|
||||
attrset;
|
||||
in builtins.concatStringsSep "\n" l;
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
s6-linux-init-shutdownd = dir {
|
||||
fifo = {
|
||||
type = "i";
|
||||
subtype = "f";
|
||||
mode = "0600";
|
||||
};
|
||||
run = {
|
||||
|
@ -31,7 +30,6 @@
|
|||
s6-svscan-log = dir {
|
||||
fifo = {
|
||||
type = "i";
|
||||
subtype = "f";
|
||||
mode = "0600";
|
||||
};
|
||||
notification-fd = { file = "3"; };
|
||||
|
|
Loading…
Reference in a new issue