mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-03-26 21:33:05 +00:00
ansible requires to either use "#!/bin/bash -eu" or "#!/bin/bash -eux" for bash shebangs.
26 lines
451 B
Bash
26 lines
451 B
Bash
#!/bin/bash -eu
|
|
|
|
NUM=${1-1000}
|
|
FILE="groups.json"
|
|
|
|
echo "{" > "$FILE"
|
|
|
|
echo " \"group_list\": [" >> "$FILE"
|
|
|
|
for i in $(seq 1 "$NUM"); do
|
|
{
|
|
echo " {"
|
|
echo " \"name\": \"group$i\","
|
|
echo " \"description\": \"group description $i\""
|
|
} >> "$FILE"
|
|
if [ "$i" -lt "$NUM" ]; then
|
|
echo " }," >> "$FILE"
|
|
else
|
|
echo " }" >> "$FILE"
|
|
fi
|
|
done
|
|
|
|
echo " ]" >> "$FILE"
|
|
|
|
echo "}" >> "$FILE"
|