2020-05-29 15:33:52 +00:00
|
|
|
#!/bin/sh -e
|
|
|
|
#
|
2020-05-30 15:24:26 +00:00
|
|
|
# 2020 Dennis Camera (dennis.camera at ssrq-sds-fds.ch)
|
2020-05-29 15:33:52 +00:00
|
|
|
#
|
|
|
|
# This file is part of cdist.
|
|
|
|
#
|
|
|
|
# cdist is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# cdist is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
2020-06-09 19:39:28 +00:00
|
|
|
# This explorer finds the aliases file to modify.
|
2020-05-29 15:33:52 +00:00
|
|
|
|
2020-05-30 15:24:26 +00:00
|
|
|
found() { echo "$*"; exit 0; }
|
2020-05-29 15:33:52 +00:00
|
|
|
|
2020-05-30 15:24:26 +00:00
|
|
|
check_file() {
|
|
|
|
if test -f "$1"
|
|
|
|
then
|
|
|
|
found "$1"
|
|
|
|
fi
|
|
|
|
}
|
2020-05-29 15:33:52 +00:00
|
|
|
|
2020-09-28 15:37:41 +00:00
|
|
|
case $("${__explorer:?}/os")
|
2020-05-30 15:24:26 +00:00
|
|
|
in
|
|
|
|
(freebsd|openbsd|solaris)
|
|
|
|
check_file /etc/mail/aliases
|
|
|
|
|
|
|
|
# default
|
|
|
|
found /etc/mail/aliases
|
|
|
|
;;
|
2020-06-22 12:02:42 +00:00
|
|
|
(alpine|debian|devuan|ubuntu)
|
2020-05-30 15:24:26 +00:00
|
|
|
check_file /etc/aliases
|
|
|
|
|
|
|
|
# default
|
|
|
|
found /etc/aliases
|
|
|
|
;;
|
|
|
|
(*)
|
|
|
|
check_file /etc/mail/aliases
|
|
|
|
check_file /etc/aliases
|
|
|
|
|
|
|
|
# default
|
2020-06-25 16:07:51 +00:00
|
|
|
found /etc/aliases
|
2020-05-30 15:24:26 +00:00
|
|
|
;;
|
2020-05-29 15:33:52 +00:00
|
|
|
esac
|