mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-12 12:39:47 +08:00
20 lines
288 B
Bash
20 lines
288 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
USERNAME="nme"
|
||
|
PASSWORD="testpass"
|
||
|
|
||
|
generate_post_json ()
|
||
|
{
|
||
|
cat <<EOF
|
||
|
{
|
||
|
"username": "$USERNAME",
|
||
|
"password": "$PASSWORD"
|
||
|
}
|
||
|
EOF
|
||
|
}
|
||
|
|
||
|
POST_JSON=$(generate_post_json)
|
||
|
|
||
|
curl --max-time 5.0 -d "$POST_JSON" -H 'Content-Type: application/json' localhost:8081/users/createadmin
|
||
|
|