Files
terraform-provider-unifi/scripts/init.d/demo-mode
Joshua Spence 6420a08e58 Limit number of demo devices (#321)
We currently only need switches for the acceptance tests, so don't provision any access points or gateways.
2023-03-01 09:56:30 +11:00

13 lines
309 B
Bash
Executable File

#!/bin/sh
write_config() {
echo "${1}=${2}" >> /usr/lib/unifi/data/system.properties
}
write_config is_simulation true
# Increase the number of demo devices to allow more concurrent tests to be executed simultaneously.
write_config demo.num_uap 0
write_config demo.num_ugw 0
write_config demo.num_usw 20