| 12345678910111213141516171819202122232425 |
- #!/bin/bash
- echo "Checking that all the game servers are listed in all csv files"
- echo "this check will ensure serverlist.csv has the same number of lines (-2 lines) as the other csv files"
- # count the number of lines in the serverlist.csv
- cd "${datadir}" || exit
- exitcode=0
- serverlistcount="$(tail -n +2 serverlist.csv | wc -l)"
- echo "serverlistcount: $serverlistcount"
- # get list of all csv files starting with ubunutu debian centos
- shopt -s nullglob
- csvlist=(ubuntu*.csv debian*.csv centos*.csv rhel*.csv almalinux*.csv rocky*.csv)
- # loop though each csv file and make sure the number of lines is the same as the serverlistcount
- for csv in "${csvlist[@]}"; do
- csvcount="$(wc -l < "${csv}")"
- csvcount=$((csvcount - 2))
- if [ "$csvcount" -ne "$serverlistcount" ]; then
- echo "ERROR: $csv ($csvcount) does not match serverlist.csv ($serverlistcount)"
- exitcode=1
- else
- echo "OK: $csv ($csvcount) and serverlist.csv ($serverlistcount) match"
- fi
- done
- exit "${exitcode}"
|