mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
2951add2bf
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
5 lines
98 B
Bash
Executable File
5 lines
98 B
Bash
Executable File
#!/bin/sh
|
|
cat /etc/nologin.txt 2>/dev/null || echo "This account is not available"
|
|
sleep 5
|
|
exit 1
|