projects
/
ansible.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
4f70a6650c1315adaffab0c57a8bd56fbe751fe2
[ansible.git]
/
roles
/
postfix
/
files
/
check-for-local-mail
1
#!/bin/bash
2
exists() {
3
[ -e "$1" ]
4
}
5
6
if exists /var/mail/*; then
7
echo "There is mail for some users in /var/mail!"
8
fi