From b6ccae2d182899eaf199e868963646b3a14f7e8b Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sun, 25 Sep 2011 14:34:36 -0400 Subject: pacman-key: simplify writing to config file Signed-off-by: Dave Reisner Signed-off-by: Dan McGee --- scripts/pacman-key.sh.in | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'scripts') diff --git a/scripts/pacman-key.sh.in b/scripts/pacman-key.sh.in index d0f338f6..cf63be87 100644 --- a/scripts/pacman-key.sh.in +++ b/scripts/pacman-key.sh.in @@ -131,13 +131,11 @@ secret_keys_available() { # Note that if we find it commented out, we won't add the option. # args: $1 conffile, $2 option-name, $3 (optional) option-value add_gpg_conf_option() { - local confline + local conffile=$1; shift # looking for the option 'bare', only leading spaces or # chars allowed, # followed by at least one space and any other text or the end of line. - if ! grep -q "^[[:space:]#]*$2\([[:space:]].*\)*$" "$1" &>/dev/null; then - confline="$2" - [[ -n $3 ]] && confline="$2 $3" - echo "$confline" >> "$1" + if ! grep -q "^[[:space:]#]*$1\([[:space:]].*\)*$" "$conffile" &>/dev/null; then + printf '%s\n' "$*" >> "$conffile" fi } -- cgit v1.2.3-24-g4f1b