mirror of
https://github.com/Thinstation/thinstation-ng.git
synced 2025-04-25 20:30:43 +03:00
Page:
Certificates
Pages
Booting Modes and Compression
Building ThinStation for booting off SSD (Goal: Terminal Server Thin Clients)
Certificates
Configuration
Custom Kernel
Debugging
Deployment
DevStation Setup
Errors Running mkmbrdrv
Examples
FAQ
Fastboot
Fools Tools
Getting Started with ThinStation
Home
Installing ThinLinc Server for a thin client environment
Machine profiles
Making bootable media on Windows
News and History
Packaging
Persistence
Ports and Packages
Printer configuration
Smart Cards
Timesync and NTP
Update a package
Updating your repository
Using Git
Using the hdupdate package
VMWare View & Citrix ICA
build.conf
thinstation.conf
No results
2
Certificates
Donald A. Cupp Jr. edited this page 2024-12-15 10:31:40 -07:00
Table of Contents
How to add a certificate to a build
Your certificates will need to be base64(PEM) encoded and suffixed as either .crt or .pem
You will need to create a folder in /build/packages that contains a certs folder, and within the certs folder, we can make a folder to hold Certificate Authority certs.
mkdir -p /build/packages/my-certificates/etc/pki/ca-trust/source/anchors/
Next create a dependencies file that pulls in ca-certificates
echo ca-certificates > /build/packages/my-certificates/dependencies
We now need to include our new package in the build configuration
echo "package my-certificates" >> /build/build.conf
You can drop any CA certificates you want in the /build/packages/my-certificates/etc/pki/ca-trust/source/anchors/, and then run build. This should link your cert into all the right places.