Skip to content

Commit

Permalink
model: add requires_mac_override setting
Browse files Browse the repository at this point in the history
  • Loading branch information
Noki committed Aug 18, 2024
1 parent fb136a3 commit 7ea7801
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/checks/check-mac-override-missing.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
#!/bin/bash

# Initialize a variable to track if any errors are found
error_found=0

location_files='locations/*.yml'

# Loop through all location YAML files
for location_file in $location_files; do
# Extract host information using yq
host_count=$(yq '.hosts | length' "$location_file")

# Loop through each host entry
for ((i=0; i<$host_count; i++)); do
hostname=$(yq ".hosts[$i].hostname" "$location_file")
model=$(yq ".hosts[$i].model" "$location_file")
mac_override=$(yq ".hosts[$i].mac_override" "$location_file")

# Convert model name to match the model file format
model_file=$(echo "$model" | sed 's/-/_/g' | sed 's/"//g')
model_file_path="group_vars/model_${model_file}.yml"

# Check if the model file exists, otherwise continue
if [ ! -f "$model_file_path" ]; then
continue
fi

# Check if the model requires mac_override
requires_mac_override=$(yq '.requires_mac_override' "$model_file_path")

if [ "$requires_mac_override" = "true" ]; then
if [ "$mac_override" == "null" ]; then
# Output the missing mac_override details immediately
echo "Host $hostname (model: $model) in $location_file is missing mac_override."
error_found=1
fi
fi
done
done

# Exit with a non-zero status code if any errors were found
if [ "$error_found" -eq 1 ]; then
exit 1
else
echo "No MAC override issues found."
fi
2 changes: 2 additions & 0 deletions group_vars/model_dlink_covr_x1860_a1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ dsa_ports:
- internet
- ethernet

requires_mac_override: true

wireless_devices:
- name: 11a_standard
band: 5g
Expand Down
2 changes: 2 additions & 0 deletions group_vars/model_mikrotik_sxtsq_2_lite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ model_nice: SXTsq Lite2

int_port: eth0

requires_mac_override: true

wireless_devices:
- name: 11g_standard
band: 2g
Expand Down
2 changes: 2 additions & 0 deletions group_vars/model_mikrotik_sxtsq_5_ac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ model__packages__to_merge:
dsa_ports:
- lan

requires_mac_override: true

wireless_devices:
- name: 11a_standard
band: 5g
Expand Down
2 changes: 2 additions & 0 deletions group_vars/model_netgear_wax202.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ dsa_ports:
- lan2
- lan3

requires_mac_override: true

wireless_devices:
- name: 11a_standard
band: 5g
Expand Down
2 changes: 2 additions & 0 deletions group_vars/model_netgear_wax220.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ brand_nice: NETGEAR
model_nice: WAX220
int_port: eth0

requires_mac_override: true

wireless_devices:
- name: 11a_standard
band: 5g
Expand Down

0 comments on commit 7ea7801

Please sign in to comment.