You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
234 B
Bash

#!/bin/bash
# This is just an example, to show that you get the provided username
# and password
# We just log them, and exit with 1 (means auth is NOT ok)
USER="$1"
PASSWORD="$2"
echo $USER:$PASSWORD >> /tmp/logchecks.txt
exit 1