From e7fd0dadb03e7f90adfa9ebdaf07530f02a846e7 Mon Sep 17 00:00:00 2001 From: Patrick Schleizer Date: Sat, 21 Dec 2019 04:09:35 -0500 Subject: [PATCH] output --- usr/lib/security-misc/remount-secure | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr/lib/security-misc/remount-secure b/usr/lib/security-misc/remount-secure index 8f12d43..c8404d4 100755 --- a/usr/lib/security-misc/remount-secure +++ b/usr/lib/security-misc/remount-secure @@ -18,15 +18,15 @@ if [ -f /usr/lib/helper-scripts/pre.bsh ]; then fi if [ -e /etc/remount-disable ] || [ -e /usr/local/etc/remount-disable ]; then - echo "$0: file /etc/remount-disable exists. Doing nothing." + echo "$0: INFO: file /etc/remount-disable exists. Doing nothing." exit 0 fi if [ -e /etc/noexec ] || [ -e /usr/local/etc/noexec ]; then noexec=true - echo "$0: Will remount with noexec because file /etc/noexec exists." + echo "$0: INFO: Will remount with noexec because file /etc/noexec exists." else - echo "$0: Will not remount with noexec because file /etc/noexec does not exist." + echo "$0: INFO: Will not remount with noexec because file /etc/noexec does not exist." fi mkdir --parents "/var/run/remount-secure"