Skip to content
Snippets Groups Projects
Commit 66eb5415 authored by Peter Palfrader's avatar Peter Palfrader
Browse files

drop -e for echo as some shell-builtin echos print the -e verbatim

parent 4b61b1ac
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,7 @@
read sha256 filename && \
cd /var/lib/puppet/ssl/ca/requests && \
( [ -e $filename ] || (echo "$filename does not exist."; exit 1) ) && \
echo -e "$sha256 $filename" | sha256sum -c && \
echo "$sha256 $filename" | sha256sum -c && \
puppet ca sign $(basename "$filename" .pem) && \
echo && \
echo "--- 8< --- CUT HERE --- 8< ---" && \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment