summaryrefslogtreecommitdiffstats
path: root/builder/modules.d/conf-tgz/module-setup.sh
blob: a07539cb8d650e0ed1cde1c6e3dee9160b960008 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash
check() {
    return 255
}
depends() {
    echo dnbd3-rootfs slx-tools
}
install() {
    inst_hook pre-mount 20 "$moddir/hooks/fetch-config-tgz.sh"
    inst_hook pre-pivot 20 "$moddir/hooks/unpack-config-tgz.sh"
		# TODO check if busybox is enough
    inst_multiple tar mktemp gzip
}