diff options
| -rw-r--r-- | backend/modules/install_main | 15 | ||||
| -rw-r--r-- | debian/changelog | 14 | ||||
| -rw-r--r-- | kanotix/html/welcome.html | 4 | ||||
| -rw-r--r-- | kanotix/html/willkommen.html | 4 |
4 files changed, 31 insertions, 6 deletions
diff --git a/backend/modules/install_main b/backend/modules/install_main index a0363b6..d3b774a 100644 --- a/backend/modules/install_main +++ b/backend/modules/install_main @@ -172,6 +172,8 @@ EOF printf "%-15s %-15s %-7s %-15s %-7s %s\n" "/dev${f#/sys/block}" "/media/floppy${f#/sys/block/fd}" "auto" "rw,user,noauto" "0" "0" >> $TARGET/etc/fstab done +# set restricted efi permission +sed -i '/\/boot\/efi/s/umask=000,shortname=mixed,quiet,utf8 0 0/umask=0077 0 1/' $TARGET/etc/fstab } # Synopsis: update_passwd_on_target @@ -285,7 +287,9 @@ function copy_etc_to_target() cp -a /etc/localtime $TARGET/etc/localtime cp -a /etc/default/keyboard $TARGET/etc/default/keyboard cp -a /etc/default/locale $TARGET/etc/default/locale - cp -a /etc/locale.conf $TARGET/etc/locale.conf + if [ -e /etc/locale.conf ]; then + cp -a /etc/locale.conf $TARGET/etc/locale.conf + fi cp -a /etc/locale.gen $TARGET/etc/locale.gen cp -a /etc/apt/sources.list.d/*.list $TARGET/etc/apt/sources.list.d/ cp -a /etc/machine-id $TARGET/etc/machine-id @@ -356,11 +360,18 @@ function copy_etc_to_target() if [ -e $TARGET/etc/sddm.conf.d/kde_settings.conf ]; then if [ "$cfg_autologin" = "on" ]; then sed -i "s/User=kanotix/User=${cfg_username}/" $TARGET/etc/sddm.conf.d/kde_settings.conf + grep -q 'kwayland' /proc/cmdline && sed -i "s/Session=plasmax11/Session=plasma/" $TARGET/etc/sddm.conf.d/kde_settings.conf else sed -i 's/User=kanotix/User=/' $TARGET/etc/sddm.conf.d/kde_settings.conf - sed -i 's/Session=plasmax11/Session=/' $TARGET/etc/sddm.conf.d/kde_settings.conf fi fi + if [ -e /var/lib/sddm/state.conf ]; then + mkdir $TARGET/var/lib/sddm + chroot_it chown sddm:sddm /var/lib/sddm &>/dev/null + cp -a /var/lib/sddm/state.conf $TARGET/var/lib/sddm/state.conf + sed -i "s/User=kanotix/User=${cfg_username}/" $TARGET/var/lib/sddm/state.conf + fi + # Crypto cp -a /etc/crypttab $TARGET/etc/crypttab diff --git a/debian/changelog b/debian/changelog index d5c5240..f919e7d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +acritoxinstaller (0.2.58) unstable; urgency=medium + + * sddm autologin fix + * Change permission for /boot/efi + + -- Holger Paradies <retabell@gmx.de> Fri, 08 Aug 2025 12:00:01 +0200 + +acritoxinstaller (0.2.57) unstable; urgency=medium + + * Support for sddm + * Small fixes for welcome message + + -- Holger Paradies <retabell@gmx.de> Sat, 03 May 2025 09:26:58 +0200 + acritoxinstaller (0.2.55) unstable; urgency=medium * Remove installer repo in installation. diff --git a/kanotix/html/welcome.html b/kanotix/html/welcome.html index 4711f8f..926345a 100644 --- a/kanotix/html/welcome.html +++ b/kanotix/html/welcome.html @@ -15,8 +15,8 @@ <p>Welcome and thank you for choosing Kanotix. The installer will now guide you through the configuration and installation.</p> <p>If you need any help check out the Kanotix website or visit the Kanotix chat room.</p> <ul> -<li><a href="https://kanotix.com">http://kanotix.com</a></li> -<li><a href="https://kanotix.acritox.com">http://kanotix.acritox.com</a></li> +<li><a href="https://kanotix.com">https://kanotix.com</a></li> +<li><a href="https://kanotix.acritox.com">https://kanotix.acritox.com</a></li> <li><a href="irc://irc.oftc.net/kanotix">irc: irc.oftc.net #kanotix</a></li> </ul> <p style="color:red;">Pay attention with UEFI Installation...</p> diff --git a/kanotix/html/willkommen.html b/kanotix/html/willkommen.html index 272db0c..cfad8ca 100644 --- a/kanotix/html/willkommen.html +++ b/kanotix/html/willkommen.html @@ -15,8 +15,8 @@ <p>Herzlich Willkommen und vielen Dank, dass Sie Kanotix gewählt haben. Der Installer wird Sie nun durch die Konfiguration und Installation führen.</p> <p>Falls Sie Hilfe benötigen werfen Sie einen Blick auf die Kanotix-Webseite oder besuchen Sie den Kanotix Chatroom.</p> <ul> -<li><a href="https://kanotix.com">http://kanotix.com</a></li> -<li><a href="https://kanotix.acritox.com">http://kanotix.acritox.com</a></li> +<li><a href="https://kanotix.com">https://kanotix.com</a></li> +<li><a href="https://kanotix.acritox.com">https://kanotix.acritox.com</a></li> <li><a href="irc://irc.oftc.net/kanotix">irc: irc.oftc.net #kanotix</a></li> </ul> <p style="color:red;">Besonderheiten bei UEFI Installation beachten...</p> |
