From 4f1fd33ac7405f856985505ccd5eb365f35a8dfe Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Thu, 11 Jun 2020 18:12:13 +0200 Subject: [PATCH] scripts/build_freebsd.sh: make rc script executable --- scripts/build_freebsd.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/build_freebsd.sh b/scripts/build_freebsd.sh index 637dbff..d2f142c 100755 --- a/scripts/build_freebsd.sh +++ b/scripts/build_freebsd.sh @@ -19,6 +19,9 @@ cat ${TEMPLATE_DIR}/rc.conf \ | sed "s~{{ PROGRAM }}~/${PACKAGE_BINDIR}/${PACKAGE_NAME}~" \ > ${BASE_DIR}/${PACKAGE_TMPDIR}/${PACKAGE_RCDIR}/${RC_NAME} +# Must be executable. +chmod 755 ${BASE_DIR}/${PACKAGE_TMPDIR}/${PACKAGE_RCDIR}/${RC_NAME} + ############################ # Create newsyslog config # ############################