[type/__mail_alias] Implement type
This commit is contained in:
parent
98496aa8e5
commit
3adc4f1609
7 changed files with 215 additions and 14 deletions
59
type/__mail_alias/explorer/aliases
Executable file
59
type/__mail_alias/explorer/aliases
Executable file
|
@ -0,0 +1,59 @@
|
||||||
|
#!/bin/sh -e
|
||||||
|
#
|
||||||
|
# 2020 Dennis Camera (dennis.camera at ssrq-sds-fds.ch)
|
||||||
|
#
|
||||||
|
# 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/>.
|
||||||
|
#
|
||||||
|
# Find aliases for a given name and print the aliases line separated
|
||||||
|
|
||||||
|
aliases_file=$("${__type_explorer}/aliases_file")
|
||||||
|
test -r "${aliases_file}" || exit 0
|
||||||
|
|
||||||
|
name=$__object_id
|
||||||
|
|
||||||
|
awk -F ':[[:blank:]]*' '
|
||||||
|
function print_aliases (aliases, matches) {
|
||||||
|
split(aliases, matches, /,[[:blank:]]*/)
|
||||||
|
for (i in matches) {
|
||||||
|
gsub(/^[[:blank:]]*|[[:blank:]]*$/, "", matches[i])
|
||||||
|
print matches[i]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/^#/ {
|
||||||
|
# comment
|
||||||
|
select = 0; cont = 0; next
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
cont = ($0 ~ /\\$/)
|
||||||
|
if (cont) sub(/[[:blank:]]*\\$/, "", $0)
|
||||||
|
}
|
||||||
|
|
||||||
|
/^[[:blank:]]/ || cont {
|
||||||
|
# continuation line
|
||||||
|
if (select) print_aliases($0)
|
||||||
|
next
|
||||||
|
}
|
||||||
|
|
||||||
|
$1 == ENVIRON["__object_id"] {
|
||||||
|
select = 1
|
||||||
|
print_aliases($2)
|
||||||
|
next
|
||||||
|
}
|
||||||
|
|
||||||
|
{ select = 0 }
|
||||||
|
' "${aliases_file}"
|
38
type/__mail_alias/manifest → type/__mail_alias/explorer/aliases_file
Executable file → Normal file
38
type/__mail_alias/manifest → type/__mail_alias/explorer/aliases_file
Executable file → Normal file
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/sh -e
|
#!/bin/sh -e
|
||||||
#
|
#
|
||||||
# 2020 Dennis Camera (dennis.camera@ssrq-sds-fds.ch)
|
# 2020 Dennis Camera (dennis.camera at ssrq-sds-fds.ch)
|
||||||
#
|
#
|
||||||
# This file is part of cdist.
|
# This file is part of cdist.
|
||||||
#
|
#
|
||||||
|
@ -17,14 +17,36 @@
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
|
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
|
# This explorer tries to find the correct aliases file.
|
||||||
|
|
||||||
|
found() { echo "$*"; exit 0; }
|
||||||
|
|
||||||
os=$(cat "$__global/explorer/os")
|
check_file() {
|
||||||
|
if test -f "$1"
|
||||||
|
then
|
||||||
|
found "$1"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
case "$os" in
|
case $("$__explorer/os")
|
||||||
*)
|
in
|
||||||
printf "Your operating system (%s) is currently not supported by this type (%s)\n" "$os" "${__type##*/}" >&2
|
(freebsd|openbsd|solaris)
|
||||||
printf "Please contribute an implementation for it if you can.\n" >&2
|
check_file /etc/mail/aliases
|
||||||
exit 1
|
|
||||||
;;
|
# default
|
||||||
|
found /etc/mail/aliases
|
||||||
|
;;
|
||||||
|
(debian|devuan|ubuntu)
|
||||||
|
check_file /etc/aliases
|
||||||
|
|
||||||
|
# default
|
||||||
|
found /etc/aliases
|
||||||
|
;;
|
||||||
|
(*)
|
||||||
|
check_file /etc/mail/aliases
|
||||||
|
check_file /etc/aliases
|
||||||
|
|
||||||
|
# default
|
||||||
|
found /etc/mail/aliases
|
||||||
|
;;
|
||||||
esac
|
esac
|
|
@ -18,3 +18,111 @@
|
||||||
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
|
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
state_should=$(cat "${__object}/parameter/state")
|
||||||
|
|
||||||
|
case $state_should
|
||||||
|
in
|
||||||
|
(present)
|
||||||
|
if cmp "${__object}/explorer/aliases" "${__object}/parameter/alias"
|
||||||
|
then
|
||||||
|
# all good!
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "set aliases" >>"$__messages_out"
|
||||||
|
mode=1
|
||||||
|
;;
|
||||||
|
(absent)
|
||||||
|
# nothing to do if no aliases found.
|
||||||
|
test -s "${__object}/explorer/aliases" || exit 0
|
||||||
|
|
||||||
|
echo "delete aliases" >>"$__messages_out"
|
||||||
|
mode=0
|
||||||
|
;;
|
||||||
|
(*)
|
||||||
|
printf 'Invalid --state given: %s\n' "$state_should" >&2
|
||||||
|
exit 1
|
||||||
|
esac
|
||||||
|
|
||||||
|
aliases_file=$(cat "${__object}/explorer/aliases_file")
|
||||||
|
|
||||||
|
if test -z "${aliases_file}"
|
||||||
|
then
|
||||||
|
echo 'Could not determine aliases file path.' >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# "export" variables to remote
|
||||||
|
printf 'mode=%u\n' "${mode}"
|
||||||
|
printf "aliases_file='%s'\n" "${aliases_file}"
|
||||||
|
|
||||||
|
cat <<'EOF'
|
||||||
|
awk -F ':[[:blank:]]*' -v mode="${mode}" '
|
||||||
|
function sepafter(f, default, _) {
|
||||||
|
_ = substr($0, length($f) + 1, index(substr($0, length($f)+1), $(f+1)) - 1)
|
||||||
|
if (_) return _
|
||||||
|
else return default
|
||||||
|
}
|
||||||
|
|
||||||
|
function write_aliases() {
|
||||||
|
if (aliases_written) return
|
||||||
|
|
||||||
|
printf "%s%s", ENVIRON["__object_id"], sepafter(1, ": ")
|
||||||
|
while ((getline < aliases_should_file) > 0) {
|
||||||
|
if (aliases_written) printf ", "
|
||||||
|
printf "%s", $0
|
||||||
|
aliases_written = 1
|
||||||
|
}
|
||||||
|
printf "\n"
|
||||||
|
close(aliases_should_file)
|
||||||
|
}
|
||||||
|
|
||||||
|
BEGIN {
|
||||||
|
aliases_should_file = (ENVIRON["__object"] "/parameter/alias")
|
||||||
|
}
|
||||||
|
|
||||||
|
/^#/ {
|
||||||
|
# comment
|
||||||
|
select = 0; cont = 0
|
||||||
|
print
|
||||||
|
next
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
cont = ($0 ~ /\\$/)
|
||||||
|
if (cont) sub(/[[:blank:]]*\\$/, "", $0)
|
||||||
|
}
|
||||||
|
|
||||||
|
/^[[:blank:]]/ || cont {
|
||||||
|
# continuation line
|
||||||
|
if (select) next
|
||||||
|
}
|
||||||
|
|
||||||
|
$1 == ENVIRON["__object_id"] {
|
||||||
|
in_list = 1
|
||||||
|
if (mode) write_aliases()
|
||||||
|
next
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
in_list = 0
|
||||||
|
print
|
||||||
|
}
|
||||||
|
|
||||||
|
END {
|
||||||
|
# if the last line as an alias definition, the separator will be reused
|
||||||
|
if (mode && !aliases_written) write_aliases()
|
||||||
|
}
|
||||||
|
' <"${aliases_file}" >"${aliases_file}.tmp" || {
|
||||||
|
echo 'Generating new aliases file failed!' >&2
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
if ! cmp "${aliases_file}" "${aliases_file}.tmp"
|
||||||
|
then
|
||||||
|
mv "${aliases_file}.tmp" "${aliases_file}"
|
||||||
|
newaliases
|
||||||
|
else
|
||||||
|
rm "${aliases_file}.tmp"
|
||||||
|
fi
|
||||||
|
EOF
|
||||||
|
|
|
@ -3,12 +3,12 @@ cdist-type__mail_alias(7)
|
||||||
|
|
||||||
NAME
|
NAME
|
||||||
----
|
----
|
||||||
cdist-type__mail_alias - TODO
|
cdist-type__mail_alias - Manage mail aliases.
|
||||||
|
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
-----------
|
-----------
|
||||||
This space intentionally left blank.
|
This cdist type allows you to configure mail aliases (/etc/mail/aliases).
|
||||||
|
|
||||||
|
|
||||||
REQUIRED PARAMETERS
|
REQUIRED PARAMETERS
|
||||||
|
@ -18,7 +18,14 @@ None.
|
||||||
|
|
||||||
OPTIONAL PARAMETERS
|
OPTIONAL PARAMETERS
|
||||||
-------------------
|
-------------------
|
||||||
None.
|
state
|
||||||
|
'present' or 'absent', defaults to 'present'
|
||||||
|
alias
|
||||||
|
the aliases where mail for the given user should be redirected to.
|
||||||
|
This parameter can be specified multiple times to redirect to more than one
|
||||||
|
recipient.
|
||||||
|
See the `aliases(5)` man page for the different forms this parameter can
|
||||||
|
take..
|
||||||
|
|
||||||
|
|
||||||
BOOLEAN PARAMETERS
|
BOOLEAN PARAMETERS
|
||||||
|
@ -31,13 +38,15 @@ EXAMPLES
|
||||||
|
|
||||||
.. code-block:: sh
|
.. code-block:: sh
|
||||||
|
|
||||||
# TODO
|
# Redirect root mail to a "real" email address
|
||||||
__mail_alias
|
__mail_alias root --alias admin@example.com
|
||||||
|
|
||||||
|
# Disable redirection of mail for joe
|
||||||
|
__mail_alias joe --state absent
|
||||||
|
|
||||||
SEE ALSO
|
SEE ALSO
|
||||||
--------
|
--------
|
||||||
:strong:`TODO`\ (7)
|
:strong:`aliases`\ (5)
|
||||||
|
|
||||||
|
|
||||||
AUTHORS
|
AUTHORS
|
||||||
|
|
1
type/__mail_alias/parameter/default/state
Normal file
1
type/__mail_alias/parameter/default/state
Normal file
|
@ -0,0 +1 @@
|
||||||
|
present
|
1
type/__mail_alias/parameter/optional
Normal file
1
type/__mail_alias/parameter/optional
Normal file
|
@ -0,0 +1 @@
|
||||||
|
state
|
1
type/__mail_alias/parameter/optional_multiple
Normal file
1
type/__mail_alias/parameter/optional_multiple
Normal file
|
@ -0,0 +1 @@
|
||||||
|
alias
|
Loading…
Reference in a new issue