diff options
author | Johan Wassberg <jocar@sunet.se> | 2024-10-17 15:22:07 +0200 |
---|---|---|
committer | Johan Wassberg <jocar@sunet.se> | 2024-10-17 15:22:07 +0200 |
commit | cfb465aeb4f8f994dd68cc0a678a73a56c6a447d (patch) | |
tree | 56ff4c10ab9f0a5f712b36b40274787320b67b4a | |
parent | b98e7ad014c7b293f4760128592c6276b16cfe9d (diff) |
Spellingmd-2024-10-17-v12
-rw-r--r-- | metadata/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/metadata/Makefile b/metadata/Makefile index 7fbebc7d..c1a43a00 100644 --- a/metadata/Makefile +++ b/metadata/Makefile @@ -47,16 +47,16 @@ testALlevel: @echo "Check for IdP:s with AL3" @for x in `grep -rl http://www.swamid.se/policy/assurance/al3 $(SRCDIRS)`; do \ if ! grep -q http://www.swamid.se/policy/assurance/al2 $$x ; then echo " [1;31m$$x missing AL2 in assurance-certification[0m" ; fi ; \ - if [ ! "$$(awk '$$1 > 2 && $$2 == "'$$x'" {print $$2}' MaxALofIDP.txt)" == "$$x" ]; then echo " [1;31m$$x missing in MaxALofIDP.txt verify with SWAMID-Policy and update efter that![0m" ; fi ; \ + if [ ! "$$(awk '$$1 > 2 && $$2 == "'$$x'" {print $$2}' MaxALofIDP.txt)" == "$$x" ]; then echo " [1;31m$$x missing in MaxALofIDP.txt verify with SWAMID-Policy and update after that![0m" ; fi ; \ done @echo "Check for IdP:s with AL2" @for x in `grep -rl http://www.swamid.se/policy/assurance/al2 $(SRCDIRS)`; do \ if ! grep -q http://www.swamid.se/policy/assurance/al1 $$x ; then echo " [1;31m$$x missing AL1 in assurance-certification[0m" ; fi ; \ - if [ ! "$$(awk '$$1 > 1 && $$2 == "'$$x'" {print $$2}' MaxALofIDP.txt)" == "$$x" ]; then echo " [1;31m$$x missing in MaxALofIDP.txt verify with SWAMID-Policy and update efter that![0m" ; fi ; \ + if [ ! "$$(awk '$$1 > 1 && $$2 == "'$$x'" {print $$2}' MaxALofIDP.txt)" == "$$x" ]; then echo " [1;31m$$x missing in MaxALofIDP.txt verify with SWAMID-Policy and update after that![0m" ; fi ; \ done @echo "Check for IdP:s with AL1" @for x in `grep -rl http://www.swamid.se/policy/assurance/al1 $(SRCDIRS)`; do \ - if [ ! "$$(awk '$$1 > 0 && $$2 == "'$$x'" {print $$2}' MaxALofIDP.txt)" == "$$x" ]; then echo " [1;31m$$x missing in MaxALofIDP.txt verify with SWAMID-Policy and update efter that![0m" ; fi ; \ + if [ ! "$$(awk '$$1 > 0 && $$2 == "'$$x'" {print $$2}' MaxALofIDP.txt)" == "$$x" ]; then echo " [1;31m$$x missing in MaxALofIDP.txt verify with SWAMID-Policy and update after that![0m" ; fi ; \ done @echo Fixa så att vi kollar!!!!! |