You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-panel/tools_bin/ngcp-api-tools

16 lines
373 B

importcreds () {
if [ -f "$CREDS" ]; then
echo "$CREDS present, checking perms"
set +e; stat "$CREDS" | grep 'Access: (0600' 1>/dev/null; r=$?; set -e
if [ "$r" = "0" ]; then
echo "$CREDS permissions ok"
. "$CREDS"
else
echo "$CREDS must have permissions 600"
exit 1
fi
fi
}