add etherpad role
[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