Edit package scripts

This commit is contained in:
2025-08-14 18:22:48 +03:00
parent 718dbdc504
commit 758f0f821b
4 changed files with 10 additions and 3 deletions
+1
View File
@@ -1,6 +1,7 @@
name: make-ca name: make-ca
description: PKI setup script for LFS (and others) description: PKI setup script for LFS (and others)
version: 1.16 version: 1.16
revision: 2
url: https://github.com/lfs-book/make-ca url: https://github.com/lfs-book/make-ca
license: GPL3 or MIT license: GPL3 or MIT
architecture: any architecture: any
+4 -1
View File
@@ -1,3 +1,6 @@
#!/bin/sh #!/bin/sh
/usr/sbin/make-ca -D "$BPM_ROOT" -g if ! /usr/sbin/make-ca -g; then
echo "No internet connection! Make sure to run 'make-ca -g' to generate ca-certificates"
exit 1
fi
+1 -1
View File
@@ -1,3 +1,3 @@
#!/bin/sh #!/bin/sh
rm -rf "$BPM_ROOT"/etc/ssl/* rm -rf /etc/ssl/*
+4 -1
View File
@@ -1,3 +1,6 @@
#!/bin/sh #!/bin/sh
/usr/sbin/make-ca -D "$BPM_ROOT" -r if ! /usr/sbin/make-ca -r; then
echo "No internet connection! Make sure to run 'make-ca -r' to rebuild ca-certificates"
exit 1
fi