diff options
Diffstat (limited to 'testModule/module-setup.sh')
| -rw-r--r-- | testModule/module-setup.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/testModule/module-setup.sh b/testModule/module-setup.sh index 652602f5..b06de3f5 100644 --- a/testModule/module-setup.sh +++ b/testModule/module-setup.sh @@ -10,9 +10,11 @@ depends() { } install() { - inst_hook cmdline 20 "$moddir/parse-ip.sh" - inst_hook pre-mount 20 "$moddir/setup_network.sh" - inst_multiple ping ip ifconfig mount sshd htop dhclient + # NOTE: Priority has to be greater than the network cmdline parsing hooks + # since we have to modify the some kernel parameter before. + inst_hook cmdline 100 "$moddir/parse-ip.sh" + #inst_hook pre-mount 20 "$moddir/setup_network.sh" + inst_multiple ping ip ifconfig mount sshd htop dhclient tail head cat vim touch return 0 } |
