Skip to content

Commit

Permalink
Revert accidental commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mrnicegyu11 committed Feb 5, 2025
1 parent 7969267 commit 5854f1d
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions certificates/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,16 @@ install-root-certificate: rootca.crt ## installs a certificate in the host syste
echo "Is the DOCKER service ready? press when ready" && read -n 1; \
fi;\
echo "======================================";,\
sudo cp $< /etc/ca-certificates/trust-source/anchors/osparc.crt; \
sudo trust extract-compat && \
echo "# restarting docker daemon" && \
$(if $(IS_OSX), \
sudo security add-trusted-cert -d -k /Library/Keychains/System.keychain $<; \
echo "Please restart the DOCKER service now..." && read -n 1; \
echo "Is the DOCKER service ready? press when ready" && read -n 1; \
, \
sudo cp $< /usr/local/share/ca-certificates/osparc.crt; \
sudo update-ca-certificates -f; \
echo "# restarting docker daemon"; \
sudo systemctl restart docker \
) \
)


Expand Down

0 comments on commit 5854f1d

Please sign in to comment.