cdist/cdist/conf/type/__sed/gencode-remote

59 lines
1.2 KiB
Plaintext
Raw Normal View History

2021-07-07 17:47:22 +00:00
#!/bin/sh -e
if [ -f "$__object/parameter/file" ]
then
file="$( cat "$__object/parameter/file" )"
else
file="/$__object_id"
fi
script="$( cat "$__object/parameter/script" )"
if [ "$script" = '-' ]
then
script="$( cat "$__object/stdin" )"
fi
2021-09-16 18:36:39 +00:00
# since stdin is not available in explorer, we pull file from target with explorer
2021-07-07 17:47:22 +00:00
file_from_target="$__object/explorer/file"
sed_cmd='sed'
if [ -f "$__object/parameter/regexp-extended" ]
then
sed_cmd="$sed_cmd -E"
2021-07-07 17:47:22 +00:00
fi
2021-09-16 18:36:39 +00:00
# do sed dry run, diff result and if no change, then there's nothing to do
# also redirect diff's output to stderr for debugging purposes
if echo "$script" | "$sed_cmd" -f - "$file_from_target" | diff -u "$file_from_target" - >&2
2021-07-07 17:47:22 +00:00
then
2021-07-07 18:28:00 +00:00
exit 0
fi
# we can't use -i, because it's not posix, so we fly with tempfile and cp
# and we use cp because we want to preserve destination file's attributes
2021-07-07 18:28:00 +00:00
# shellcheck disable=SC2016
echo 'tmp="$__object/tempfile"'
2021-07-07 17:47:22 +00:00
2021-07-07 18:28:00 +00:00
echo "$sed_cmd -f - '$file' > \"\$tmp\" << EOF"
2021-07-07 17:47:22 +00:00
2021-07-07 18:28:00 +00:00
echo "$script"
2021-07-07 17:47:22 +00:00
2021-07-07 18:28:00 +00:00
echo 'EOF'
2021-07-07 17:47:22 +00:00
2021-07-07 18:28:00 +00:00
echo "cp \"\$tmp\" '$file'"
2021-07-07 18:23:25 +00:00
2021-07-07 18:28:00 +00:00
# shellcheck disable=SC2016
echo 'rm -f "$tmp"'
2021-07-07 18:23:25 +00:00
2021-07-07 18:28:00 +00:00
echo 'change' >> "$__messages_out"
if [ -f "$__object/parameter/onchange" ]
then
cat "$__object/parameter/onchange"
2021-07-07 17:47:22 +00:00
fi