mirror of
https://github.com/ovh/debian-cis.git
synced 2024-11-24 14:31:24 +01:00
IMP(shellcheck): fix harmless warnings (SC2155)
This commit is contained in:
parent
b9e129d8fe
commit
16cc2bef71
@ -92,7 +92,7 @@ has_file_correct_permissions() {
|
|||||||
local FILE=$1
|
local FILE=$1
|
||||||
local PERMISSIONS=$2
|
local PERMISSIONS=$2
|
||||||
|
|
||||||
if [ $($SUDO_CMD stat -L -c "%a" "$FILE") = "$PERMISSIONS" ]; then
|
if [ "$($SUDO_CMD stat -L -c "%a" "$FILE")" = "$PERMISSIONS" ]; then
|
||||||
FNRET=0
|
FNRET=0
|
||||||
else
|
else
|
||||||
FNRET=1
|
FNRET=1
|
||||||
@ -331,7 +331,8 @@ has_mount_option() {
|
|||||||
local PARTITION=$1
|
local PARTITION=$1
|
||||||
local OPTION=$2
|
local OPTION=$2
|
||||||
if grep "[[:space:]]${PARTITION}[[:space:]]" /etc/fstab | grep -vE "^#" | awk '{print $4}' | grep -q "bind"; then
|
if grep "[[:space:]]${PARTITION}[[:space:]]" /etc/fstab | grep -vE "^#" | awk '{print $4}' | grep -q "bind"; then
|
||||||
local actual_partition="$(grep "[[:space:]]${PARTITION}[[:space:]]" /etc/fstab | grep -vE "^#" | awk '{print $1}')"
|
local actual_partition
|
||||||
|
actual_partition="$(grep "[[:space:]]${PARTITION}[[:space:]]" /etc/fstab | grep -vE "^#" | awk '{print $1}')"
|
||||||
debug "$PARTITION is a bind mount of $actual_partition"
|
debug "$PARTITION is a bind mount of $actual_partition"
|
||||||
PARTITION="$actual_partition"
|
PARTITION="$actual_partition"
|
||||||
fi
|
fi
|
||||||
@ -397,7 +398,8 @@ apt_check_updates() {
|
|||||||
local NAME="$1"
|
local NAME="$1"
|
||||||
local DETAILS="/dev/shm/${NAME}"
|
local DETAILS="/dev/shm/${NAME}"
|
||||||
$SUDO_CMD apt-get upgrade -s 2>/dev/null | grep -E "^Inst" >"$DETAILS" || :
|
$SUDO_CMD apt-get upgrade -s 2>/dev/null | grep -E "^Inst" >"$DETAILS" || :
|
||||||
local COUNT=$(wc -l <"$DETAILS")
|
local COUNT
|
||||||
|
COUNT=$(wc -l <"$DETAILS")
|
||||||
FNRET=128 # Unknown function return result
|
FNRET=128 # Unknown function return result
|
||||||
RESULT="" # Result output for upgrade
|
RESULT="" # Result output for upgrade
|
||||||
if [ "$COUNT" -gt 0 ]; then
|
if [ "$COUNT" -gt 0 ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user