Compare commits

...

1 commit

Author SHA1 Message Date
Simon Walter
81164eb0c6 email_alias new type 2024-05-07 22:28:14 +02:00
4 changed files with 82 additions and 0 deletions

View file

@ -0,0 +1,21 @@
#!/bin/sh
#
# 2023 Simon Walter (simon@the-oposite-of-implicit.techonolgy)
#
# 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/>.
#
if $(command -v newaliases); then echo yes; else echo no; fi

View file

@ -0,0 +1,23 @@
#!/bin/sh
#
# 2023 Simon Walter (simon at explicit dot technology)
#
# 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/>.
#
if [ "$(cat "$__object/explorer/newaliases")" = "yes" ]; then
echo "newaliases"
fi

View file

@ -0,0 +1,37 @@
#!/bin/sh
#
# 2023 Simon Walter (simon at explicit dot technology)
#
# 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/>.
#
os="$(cat "$__global/explorer/os")"
case "$os" in
debian|ubuntu|devuan)
if [ "$(cat "$__object/explorer/newaliases")" = "yes" ]; then
for="$(cat "$__object/parameter/for")"
__key_value $__object_id --file /etc/aliases --delimiter ":" --value "$for"
else
echo "'newaliases' command not found. Please install the 'default-mta'\
pkg or otherwise provide the 'newaliases' command." >&2
exit 1
fi
;;
*)
echo "Don't know how to manage aliases on: $os. Please contribute." >&2
exit 1
;;
esac

View file

@ -0,0 +1 @@
for