Merge pull request 'Upgrade to latest main' (#11) from main into devel

Reviewed-on: #11
This commit was merged in pull request #11.
This commit is contained in:
2026-04-25 15:47:49 +02:00
4 changed files with 16 additions and 5 deletions
+6 -4
View File
@@ -1,9 +1,11 @@
.Trash* .Trash*
*.kdev4
.kdev4/*
client_software/.sync_*.db
client_software/setup_system.conf
config/setup_system.conf config/setup_system.conf
config/setup_system.conf.bak config/setup_system.conf.bak
config/skel.tar.zst config/skel.tar.zst
config/.sync_*.db config/.sync_*.db
client_software/.sync_*.db config/.sync_*.db
client_software/setup_system.conf config.d/*.conf
*.kdev4
.kdev4/*
+1 -1
View File
@@ -1,6 +1,6 @@
# Fedora OEMDRV # Fedora OEMDRV
an automated massinstallation scripting collection for Fedora and Anakonda an automated massinstallation scripting collection for Fedora and Anaconda
IN DEVELOPMENT ! IN DEVELOPMENT !
+4
View File
@@ -0,0 +1,4 @@
# Local config Files
You may have .conf files in here, which will be not be touched by anything and will be sourced by the scripts to overwrite any of the settings in setup_system.conf.dist
The syntax should be same as setup_system.conf.dist
+5
View File
@@ -21,6 +21,11 @@ if [ ! -f $(dirname "$0")/../config/setup_system.conf ]; then
fi fi
source $(dirname "$0")/../config/setup_system.conf source $(dirname "$0")/../config/setup_system.conf
#Parse additional client-configs
if [[ `ls -1 $(dirname "$0")/../config.d/*.conf 2>/dev/null | wc -l ` -gt 0 ]]; then
source $(dirname "$0")/../config.d/*.conf
fi
#Check if the Data- Directory is encrypted #Check if the Data- Directory is encrypted
check_data_isecrypted() { check_data_isecrypted() {
CHECKRES=$( cat /etc/mtab | grep "${DECRYPTEDDATADIR}" | grep "fuse.gocryptfs" ) CHECKRES=$( cat /etc/mtab | grep "${DECRYPTEDDATADIR}" | grep "fuse.gocryptfs" )