6 lines
169 B
Bash
6 lines
169 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if grep -i "gpg" /etc/apt/apt.conf.d/* | sed -e '/^#/d' -e '/^[ \t][ \t]*#/d' -e 's/#.*$//' -e '/^$/d' | grep -i "gpg.*check.*false";then
|
||
|
exit 1
|
||
|
fi
|