diff options
| author | torben | 2015-04-09 03:27:39 +0200 |
|---|---|---|
| committer | torben | 2015-04-09 03:27:39 +0200 |
| commit | 3541f12849b277a2405a4d3bf692cf62f2045126 (patch) | |
| tree | 065f302e6fe108d53771bf421429224202ba33f1 /testModule/module-setup.sh | |
| parent | Trying convert given pxe ip configuration to dracut compatible one. (diff) | |
| download | systemd-init-3541f12849b277a2405a4d3bf692cf62f2045126.tar.gz systemd-init-3541f12849b277a2405a4d3bf692cf62f2045126.tar.xz systemd-init-3541f12849b277a2405a4d3bf692cf62f2045126.zip | |
Adding functions library.
Diffstat (limited to 'testModule/module-setup.sh')
| -rw-r--r-- | testModule/module-setup.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/testModule/module-setup.sh b/testModule/module-setup.sh index b06de3f5..8b35d52a 100644 --- a/testModule/module-setup.sh +++ b/testModule/module-setup.sh @@ -10,11 +10,14 @@ depends() { } install() { + # Loads globally needed useful functions or fixes some native dracut ones. + inst_hook cmdline 10 "$moddir/library.sh" # 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_simple "$moddir/busybox" /usr/bin/busybox #inst_hook pre-mount 20 "$moddir/setup_network.sh" - inst_multiple ping ip ifconfig mount sshd htop dhclient tail head cat vim touch + inst_multiple ping ip ifconfig sshd htop dhclient tail head cat vim touch sed return 0 } |
