From ede076e7c5bba2d5bac06f9fae8dfd54499acf90 Mon Sep 17 00:00:00 2001 From: Takashi Yoshi Date: Fri, 14 Dec 2018 21:20:24 +0100 Subject: [PATCH] [type/__package_pkg_openbsd] Send messages local instead of remote --- cdist/conf/type/__package_pkg_openbsd/gencode-remote | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cdist/conf/type/__package_pkg_openbsd/gencode-remote b/cdist/conf/type/__package_pkg_openbsd/gencode-remote index da63626b..4187a84c 100755 --- a/cdist/conf/type/__package_pkg_openbsd/gencode-remote +++ b/cdist/conf/type/__package_pkg_openbsd/gencode-remote @@ -99,8 +99,8 @@ if [ \$? -ne 0 ]; then echo "Error: \$status" exit 1 fi -echo "installed" >> "$__messages_out" eof +echo "installed" >> "$__messages_out" ;; absent) @@ -118,8 +118,8 @@ if [ \$? -eq 0 ]; then echo "Error: \$status" exit 1 fi -echo "removed" >> "$__messages_out" eof +echo "removed" >> "$__messages_out" ;; *) echo "Unknown state: $state_should" >&2