Skip to content
Snippets Groups Projects
Commit 85cc54e1 authored by Stefan Galinski's avatar Stefan Galinski :video_game:
Browse files

[TASK] Cleanup

parent 71e3e49c
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env bash
if [ -z "$1" ] if [ -z "$1" ]
then then
echo "Please supply a subdomain to create a certificate for"; echo "Please supply a subdomain to create a certificate for";
...@@ -5,7 +6,7 @@ then ...@@ -5,7 +6,7 @@ then
exit; exit;
fi fi
# Create a new private key if one doesnt exist, or use the xeisting one if it does # Create a new private key if one doesn't exist, or use the existing one if it does
if [ -f device.key ]; then if [ -f device.key ]; then
KEY_OPT="-key" KEY_OPT="-key"
else else
......
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