52 lines
2.5 KiB
Bash
52 lines
2.5 KiB
Bash
#!/usr/bin/env bash
|
|
{
|
|
l_pkgoutput=""
|
|
if command -v dpkg-query > /dev/null 2>&1; then
|
|
l_pq="dpkg-query -W"
|
|
elif command -v rpm > /dev/null 2>&1; then
|
|
l_pq="rpm -q"
|
|
fi
|
|
l_pcl="gdm gdm3"
|
|
for l_pn in $l_pcl; do
|
|
$l_pq "$l_pn" > /dev/null 2>&1 && l_pkgoutput="$l_pkgoutput\n - Package: \"$l_pn\" exists on the system\n - checking configuration"
|
|
done
|
|
if [ -n "$l_pkgoutput" ]; then
|
|
l_output="" l_output2=""
|
|
echo -e "$l_pkgoutput"
|
|
l_gdmfile="$(grep -Prils '^\h*banner-message-enable\b' /etc/dconf/db/*.d)"
|
|
if [ -n "$l_gdmfile" ]; then
|
|
l_gdmprofile="$(awk -F\/ '{split($(NF-1),a,".");print a[1]}' <<< "$l_gdmfile")"
|
|
if grep -Pisq '^\h*banner-message-enable=true\b' "$l_gdmfile"; then
|
|
l_output="$l_output\n - The \"banner-message-enable\" option is enabled in \"$l_gdmfile\""
|
|
else
|
|
l_output2="$l_output2\n - The \"banner-message-enable\" option is not enabled"
|
|
fi
|
|
l_lsbt="$(grep -Pios '^\h*banner-message-text=.*$' "$l_gdmfile")"
|
|
if [ -n "$l_lsbt" ]; then
|
|
l_output="$l_output\n - The \"banner-message-text\" option is set in \"$l_gdmfile\"\n - banner-message-text is set to:\n - \"$l_lsbt\""
|
|
else
|
|
l_output2="$l_output2\n - The \"banner-message-text\" option is not set"
|
|
fi
|
|
if grep -Pq "^\h*system-db:$l_gdmprofile" /etc/dconf/profile/"$l_gdmprofile"; then
|
|
l_output="$l_output\n - The \"$l_gdmprofile\" profile exists"
|
|
else
|
|
l_output2="$l_output2\n - The \"$l_gdmprofile\" profile doesn't exist"
|
|
fi
|
|
if [ -f "/etc/dconf/db/$l_gdmprofile" ]; then
|
|
l_output="$l_output\n - The \"$l_gdmprofile\" profile exists in the dconf database"
|
|
else
|
|
l_output2="$l_output2\n - The \"$l_gdmprofile\" profile doesn't exist in the dconf database"
|
|
fi
|
|
else
|
|
l_output2="$l_output2\n - The \"banner-message-enable\" option isn't configured"
|
|
fi
|
|
else
|
|
echo -e "\n\n - GNOME Desktop Manager isn't installed\n - Recommendation is Not Applicable\n- Audit result:\n *PASS*\n"
|
|
fi
|
|
if [ -z "$l_output2" ]; then
|
|
echo -e "\n- Audit Result:\n PASS\n$l_output\n"
|
|
else
|
|
echo -e "\n- Audit Result:\n FAIL\n - Reason(s) for audit failure:\n$l_output2\n"
|
|
[ -n "$l_output" ] && echo -e "\n- Correctly set:\n$l_output\n"
|
|
fi
|
|
} |