From 8dc2c210068fdd2f166bc7f3ede52f86d39a5774 Mon Sep 17 00:00:00 2001 From: Willem Jan Withagen Date: Wed, 30 Mar 2016 13:09:16 +0200 Subject: [PATCH] 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 --- src/ceph-detect-init/run-tox.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/ceph-detect-init/run-tox.sh b/src/ceph-detect-init/run-tox.sh index 133326404573b..675b59345647d 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 -- 2.47.3