Merge pull request #9340 from stefreak/patch-1

tools: fix frr pathspace folder permissions
This commit is contained in:
David Lamparter 2021-09-02 13:24:44 +02:00 committed by GitHub
commit b8f9523597
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,7 +60,7 @@ chownfrr() {
[ -n "$FRR_GROUP" ] && chgrp "$FRR_GROUP" "$1"
[ -n "$FRR_CONFIG_MODE" ] && chmod "$FRR_CONFIG_MODE" "$1"
if [ -d "$1" ]; then
chmod u+x "$1"
chmod gu+x "$1"
fi
}