summaryrefslogtreecommitdiff
path: root/scripts/cpio
blob: 597e17d3cbcf0727b1ce092278eff7c693a0ad51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env bash
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
set -x

opt=
user="-R 0:0"
os=$(uname)
case $os in
	NetBSD|MirBSD|OpenBSD)
		quiet=""
		;;
	Darwin)
		user="-R root:wheel"
		quiet=""
		;;
	*)
		quiet="--quiet"
		;;
esac
if [ "$2" = "r" ];then
	opt=$user
fi
if [ -x /usr/bin/cpio ];then
	/usr/bin/cpio $quiet $opt "$@"
else
	/bin/cpio $quiet $opt "$@"
fi