mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Christian Hermann <christian.hermann@hytera.de>
To: ptxdist@pengutronix.de
Subject: [ptxdist] [PATCH] openssh/rc-once: fix minor bug and cleanup
Date: Mon, 17 Aug 2020 16:08:02 +0200	[thread overview]
Message-ID: <20200817140802.1471-1-christian.hermann@hytera.de> (raw)

* `$_type` does not exist, resulting in empty variable.
  Fixup of 0a4f1ee4d.
* apply issues reported by shellcheck and shfmt
* drop command concatenation for key creation, because why would you want
  to miss out on ed25519 keys if the previous keys couldn't be
  generated?

Signed-off-by: Christian Hermann <christian.hermann@hytera.de>
---
 projectroot/etc/rc.once.d/openssh | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/projectroot/etc/rc.once.d/openssh b/projectroot/etc/rc.once.d/openssh
index 66cfa06df..4a8dd26b0 100644
--- a/projectroot/etc/rc.once.d/openssh
+++ b/projectroot/etc/rc.once.d/openssh
@@ -19,7 +19,7 @@ host_keys_required() {
 
 create_key() {
 	keytype="$1"
-	prettykeytype="$(echo $_type | tr a-z A-Z)"
+	prettykeytype="$(echo "$keytype" | tr '[:lower:]' '[:upper:]')"
 	shift
 	hostkeys="$1"
 	shift
@@ -28,8 +28,8 @@ create_key() {
 
 	if echo "$hostkeys" | grep -x -F "$file" >/dev/null; then
 		echo "Create $prettykeytype key; this may take some time ..."
-		rm -f $file &&
-		ssh-keygen -q -f "$file" -N '' -t "$keytype" "$@" || return
+		rm -f "$file" &&
+			ssh-keygen -q -f "$file" -N '' -t "$keytype" "$@" || return
 		echo "Created $prettykeytype key."
 	fi
 }
@@ -37,9 +37,9 @@ create_key() {
 create_keys() {
 	hostkeys="$(host_keys_required)"
 
-	create_key "dsa" "$hostkeys" &&
-	create_key "ecdsa" "$hostkeys" &&
-	create_key "ed25519" "$hostkeys" &&
+	create_key "dsa" "$hostkeys"
+	create_key "ecdsa" "$hostkeys"
+	create_key "ed25519" "$hostkeys"
 	create_key "rsa" "$hostkeys" -b 4096
 }
 
-- 
2.28.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

             reply	other threads:[~2020-08-17 14:08 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-17 14:08 Christian Hermann [this message]
2020-08-17 14:33 ` Alexander Dahl

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200817140802.1471-1-christian.hermann@hytera.de \
    --to=christian.hermann@hytera.de \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox