mirror of
https://github.com/sheumann/hush.git
synced 2024-11-19 08:31:11 +00:00
5 lines
98 B
Plaintext
5 lines
98 B
Plaintext
|
#!/bin/sh
|
||
|
cat /etc/nologin.txt 2>/dev/null || echo "This account is not available"
|
||
|
sleep 5
|
||
|
exit 1
|