mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* backend rename * rename embassy and closes #2179 * update root ca name on disk * update MOTD * update readmes * your server typo * another tiny typo * fix png name * Update backend/src/net/wifi.rs Co-authored-by: Lucy C <12953208+elvece@users.noreply.github.com> * changes needed due to rebase --------- Co-authored-by: Matt Hill <matthewonthemoon@gmail.com> Co-authored-by: Matt Hill <MattDHill@users.noreply.github.com> Co-authored-by: Lucy C <12953208+elvece@users.noreply.github.com>
8 lines
301 B
Bash
Executable File
8 lines
301 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for mozilladir in $(find /home -name ".mozilla"); do
|
|
for certDB in $(find ${mozilladir} -name "cert9.db"); do
|
|
certDir=$(dirname ${certDB});
|
|
certutil -A -n "StartOS Local Root CA" -t "TCu,Cuw,Tuw" -i /usr/local/share/ca-certificates/startos-root-ca.crt -d ${certDir}
|
|
done
|
|
done |