2010-06-15 15:14:18 +00:00
|
|
|
#!/bin/sh -e
|
2010-06-15 13:30:12 +00:00
|
|
|
|
|
|
|
# desc: test successful pre-install
|
|
|
|
|
|
|
|
$APK add --root $ROOT --initdb --repository $PWD/repo1 --repository $SYSREPO \
|
|
|
|
-U test-c
|
|
|
|
|
|
|
|
# check that package was installed
|
|
|
|
$APK info --root $ROOT -e test-c
|
|
|
|
|
|
|
|
# check if pre-install was executed
|
|
|
|
test -f $ROOT/pre-install
|