#!/bin/sh

mkdir -p foo.pkg
cat >foo.pkg/files <<-EOF
	/bin
	EOF

mkdir -p tmp/dest/bin
>tmp/dest/bin/busybox
chmod u+s tmp/dest/bin/busybox
ln -sf busybox tmp/dest/bin/ash
ln -sf busybox tmp/dest/bin/bbconfig

cd tmp
OPK_PACKAGES='foo' oh-installfiles
assert test_non_dir_nodes dest
assert test_nodes foo.data / /bin/ /bin/busybox* /bin/ash@ /bin/bbconfig@
cd ..

rm -Rf foo.pkg tmp