summaryrefslogtreecommitdiffstats
path: root/modules.d/conf-tgz/module-setup.sh
blob: 936d4356eea61b3df0960d0fd8f32ba4f3f61e49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env bash

check() {
	return 255
}
depends() {
	echo dnbd3-rootfs slx-tools
}
install() {
	inst_multiple tar mktemp gzip

	for _name in "s3-fetch-config" "s3-fetch-config-tgz" "s3-unpack-config-tgz"; do
		inst "$moddir/hooks/${_name}.sh" \
				"/usr/local/bin/${_name}.sh"
		inst_simple "${moddir}/services/${_name}.service" \
				"${systemdsystemunitdir}/${_name}.service"
		mkdir --parents \
				"${initdir}/${systemdsystemunitdir}/initrd.target.wants"
		ln_r "${systemdsystemunitdir}/${_name}.service" \
				"${systemdsystemunitdir}/initrd.target.wants/${_name}.service"
	done
}