forked from DGNum/liminix
fix dependency on kernel moduels in firewall service
This commit is contained in:
parent
c9e4c1b0da
commit
34291292c0
1 changed files with 5 additions and 3 deletions
|
@ -55,9 +55,11 @@ in
|
|||
};
|
||||
};
|
||||
in svc // {
|
||||
build = args : (svc.build args) // {
|
||||
dependencies = [ loadModules ] ++ (svc.dependencies or []);
|
||||
};
|
||||
build = args :
|
||||
let args' = args // {
|
||||
dependencies = (args.dependencies or []) ++ [loadModules];
|
||||
};
|
||||
in svc.build args' ;
|
||||
};
|
||||
|
||||
# For historical reasons the kernel config is split between
|
||||
|
|
Loading…
Reference in a new issue