blob: b77b05f2ff73024302737a7fd38a1bba12742c10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/sbin/sh -e
run_import_manifests()
{
/lib/svc/method/manifest-import || true
}
if [ "$1" = triggered ]; then
run_import_manifests
exit 0
fi
[ "$1" = configure ] || exit 0
#DEBHELPER#
exit 0
|