BorisWilhelms / create-dotnet-devcert

A simple script that creates and trusts a self-signed development certificate for dotnet on Linux distributions.
https://blog.wille-zone.de/post/aspnetcore-devcert-for-ubuntu
MIT License
329 stars 71 forks source link

OpenSuse TW #17

Open Mr-MooMoo opened 2 months ago

Mr-MooMoo commented 2 months ago

For OpenSuse Tumbleweed:

#!/bin/sh
. "$(dirname "$0")/common.sh"

$SUDO cp $CRTFILE "/etc/pki/trust/anchors/"
$SUDO update-ca-certificates

cleanup