change yaml format

This commit is contained in:
2023-04-28 04:39:52 +02:00
parent 3d1a0ac214
commit 88edeee596
15 changed files with 483 additions and 56 deletions

11
scan_all Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env bash
DIR="$(dirname -- $0)"
mkdir -p "$DIR"/scans
mkdir -p "$DIR"/site
for conf in "$DIR"/configs/*.yaml
do
./scan "$conf"
done