From: Willem Jan Withagen Date: Wed, 30 Mar 2016 11:09:16 +0000 (+0200) Subject: ceph-detect-init/run-tox.sh: FreeBSD: No init detect X-Git-Tag: v10.1.1~41^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F8373%2Fhead;p=ceph.git ceph-detect-init/run-tox.sh: FreeBSD: No init detect - Freebsd has /etc/rc.d with scripts to start daemons at boottime. Test for that are currently not integrated with Ceph tests Signed-off-by: Willem Jan Withagen --- diff --git a/src/ceph-detect-init/run-tox.sh b/src/ceph-detect-init/run-tox.sh index 13332640457..675b5934564 100755 --- a/src/ceph-detect-init/run-tox.sh +++ b/src/ceph-detect-init/run-tox.sh @@ -17,6 +17,11 @@ # GNU Library Public License for more details. # +if [ x"`uname`"x = xFreeBSDx ]; then + echo FreeBSD init system has not been integrated. + exit 0 +fi + # run from the ceph-detect-init directory or from its parent : ${CEPH_DETECT_INIT_VIRTUALENV:=ceph-detect-init-virtualenv} test -d ceph-detect-init && cd ceph-detect-init