cdist/cdist/conf/type/__package_pkgng_freebsd/explorer/pkg_bootstrapped
Evilham f994226d0e [__package_pkgng_freebsd] Bootstrap pkg if necessary
In a pristine FreeBSD base installation, pkg is really a bootstrapper utility,
in such cases the type used to fail instead of automatically bootstrapping pkg.
2020-09-29 19:47:59 +02:00

4 lines
60 B
Bash
Executable file

#!/bin/sh -e
if pkg -N >/dev/null 2>&1; then
echo "YES"
fi