summaryrefslogtreecommitdiffstats
path: root/linux-image.pkg/postinst
blob: 9b615b4b7a73bf1e43e09f0c710b276216b31b61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

first=true
for arg in "${@}"; do
	if ${first}; then
		set --
		first=false
	fi
	set -- "${@}" -a "${arg}"
done

run-parts "${@}" /etc/kernel/postinst.d