diff options
author | Jonathan Bauer | 2021-07-19 16:53:09 +0200 |
---|---|---|
committer | Jonathan Bauer | 2021-07-19 16:53:09 +0200 |
commit | b5ddf1f10af15c03ee40f7be09ed8970ed1685cb (patch) | |
tree | 16b3165f59b4bfe42a0aa68fad5aa5a234293acf | |
parent | [slx-network] change to new splashtool path (diff) | |
download | systemd-init-b5ddf1f10af15c03ee40f7be09ed8970ed1685cb.tar.gz systemd-init-b5ddf1f10af15c03ee40f7be09ed8970ed1685cb.tar.xz systemd-init-b5ddf1f10af15c03ee40f7be09ed8970ed1685cb.zip |
[conf-tgz] unpack tgz after everything else
giving still a chance for modules to register after 90 should it be
needed
-rwxr-xr-x | modules.d/conf-tgz/module-setup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules.d/conf-tgz/module-setup.sh b/modules.d/conf-tgz/module-setup.sh index a07539cb..5315dab8 100755 --- a/modules.d/conf-tgz/module-setup.sh +++ b/modules.d/conf-tgz/module-setup.sh @@ -7,7 +7,7 @@ depends() { } install() { inst_hook pre-mount 20 "$moddir/hooks/fetch-config-tgz.sh" - inst_hook pre-pivot 20 "$moddir/hooks/unpack-config-tgz.sh" + inst_hook pre-pivot 90 "$moddir/hooks/unpack-config-tgz.sh" # TODO check if busybox is enough inst_multiple tar mktemp gzip } |