Created dummy test script

main
Paco Hope 2022-11-27 09:17:52 -05:00
parent 8bd3ecac80
commit 672e979625
1 changed files with 13 additions and 0 deletions

13
server-util/tootctl Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
# This is just a dummy script for testing.
# To use it, do something like:
# python3 make-users.py -n 3 -e username@example.com -p .
if [ "$2" = "create" ]
then
echo "New password: foobar"
else
echo "OK"
fi
exit 0