Skip to content

Commit

Permalink
Updated for Firefox SSL cert first-time install
Browse files Browse the repository at this point in the history
  • Loading branch information
markshust authored Jan 11, 2022
1 parent 429e105 commit 2695fe2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compose/bin/setup-ssl-ca
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ if [ "$(uname)" == "Darwin" ]; then
### Check if distribution directory exists
DistDirectory="/Applications/Firefox.app/Contents/Resources/distribution"
if [ ! -d "$DistDirectory" ]; then
sudo mkdir "$DistDirectory"
sudo mkdir -p "$DistDirectory"
fi
### Move the newly created policies.json to the Certificates directory
sudo mv policies.json "$DistDirectory"/policies.json

### Check if Certificates directory exists
CertDirectory="/Library/Application Support/Mozilla/Certificates"
if [ ! -d "$CertDirectory" ]; then
sudo mkdir "$CertDirectory"
sudo mkdir -p "$CertDirectory"
fi

### Move the newly created .pem to the Certificates directory
Expand Down

0 comments on commit 2695fe2

Please sign in to comment.