[debian-edu-commits] [Git][debian-edu/debian-edu-config][bookworm] 9 commits: Start 2.12.38 development.

Mike Gabriel (@sunweaver) gitlab at salsa.debian.org
Thu Nov 30 07:58:28 GMT 2023



Mike Gabriel pushed to branch bookworm at Debian Edu / debian-edu-config


Commits:
01e201ca by Mike Gabriel at 2023-09-27T22:32:59+02:00
Start 2.12.38 development.

d/changelog entries will be written on release using the git commit
messages.

Use 'gbp dch --since 2.12.37' to write d/changelog entries since that
last release.

Gbp-Dch: ignore

- - - - -
e009a76e by Wolfgang Schweer at 2023-11-09T17:36:48+01:00
fix main server network setup. Closes: #1055647.

- - - - -
c17d09f5 by Holger Levsen at 2023-11-10T16:43:01+01:00
release as 2.12.38

Signed-off-by: Holger Levsen <holger at layer-acht.org>

- - - - -
35da6ea0 by Mike Gabriel at 2023-11-19T09:56:08+01:00
ldap-bootstrap/root.ldif: Fix gosaAclEntry of BaseDN object.

- - - - -
159edd3e by Mike Gabriel at 2023-11-19T10:03:08+01:00
release as 2.12.39

Signed-off-by: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>

- - - - -
5e0dd63d by Mike Gabriel at 2023-11-19T10:07:00+01:00
Start 2.12.40 development.

d/changelog entries will be written on release using the git commit
messages.

Use 'gbp dch --since 2.12.39' to write d/changelog entries since that
last release.

Gbp-Dch: ignore

- - - - -
02181b04 by Mike Gabriel at 2023-11-30T08:32:13+01:00
share/debian-edu-config/gosa.conf.template: Deploy GOsæ² based on its classic theming, the Materialize CSS theme is too immature to be used in production.

- - - - -
82def362 by Mike Gabriel at 2023-11-30T08:34:17+01:00
release as 2.12.40

Signed-off-by: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>

- - - - -
d198cdaf by Mike Gabriel at 2023-11-30T08:57:49+01:00
release to bookworm as 2.12.40~deb12u1

- - - - -


4 changed files:

- debian/changelog
- ldap-bootstrap/root.ldif
- share/debian-edu-config/d-i/pre-pkgsel
- share/debian-edu-config/gosa.conf.template


Changes:

=====================================
debian/changelog
=====================================
@@ -1,3 +1,30 @@
+debian-edu-config (2.12.40~deb12u1) bookworm; urgency=medium
+
+  * Upload to bookworm.
+
+ -- Mike Gabriel <sunweaver at debian.org>  Thu, 30 Nov 2023 08:36:15 +0100
+
+debian-edu-config (2.12.40) unstable; urgency=medium
+
+  * share/debian-edu-config/gosa.conf.template:
+    + Deploy GOsæ² based on its classic theming, the Materialize CSS theme is
+      too immature to be used in production.
+
+ -- Mike Gabriel <sunweaver at debian.org>  Thu, 30 Nov 2023 08:32:34 +0100
+
+debian-edu-config (2.12.39) unstable; urgency=medium
+
+  * ldap-bootstrap/root.ldif: Fix gosaAclEntry of BaseDN object.
+
+ -- Mike Gabriel <sunweaver at debian.org>  Sun, 19 Nov 2023 09:56:39 +0100
+
+debian-edu-config (2.12.38) unstable; urgency=medium
+
+  [ Wolfgang Schweer ]
+  * Fix main server network setup. Closes: #1055647.
+
+ -- Holger Levsen <holger at debian.org>  Fri, 10 Nov 2023 16:42:11 +0100
+
 debian-edu-config (2.12.37) unstable; urgency=medium
 
   [ Guido Berhoerster ]


=====================================
ldap-bootstrap/root.ldif
=====================================
@@ -29,7 +29,7 @@ dc: skole
 ou: skole
 o: skole.skolelinux.no
 labeledURI: https://www/ LDAP for Debian Edu/Skolelinux
-gosaAclEntry: 0:psub:$GOSAADMINSDN64:all;cmdrw,department/department;cmdrw,department/domain;r,department/organization;r,department/dcObject;r,department/country;r,department/DynamicLdapGroup;r,users/posixAccount;#shadowLastChange;r#gotoLastSystemLogin;r#mustchangepassword;r#shadowMin;r#shadowMax;r#shadowWarning;r#shadowInactive;r#shadowExpire;r#sshPublicKey;r#accessTo;r
+gosaAclEntry: 0:psub:$GOSAADMINSDN64:all/all;cmdrw,department/department;cmdrw,department/domain;r,department/organization;r,department/dcObject;r,department/country;r,department/DynamicLdapGroup;r,users/posixAccount;#shadowLastChange;r#gotoLastSystemLogin;r#mustchangepassword;r#shadowMin;r#shadowMax;r#shadowWarning;r#shadowInactive;r#shadowExpire;r#sshPublicKey;r#accessTo;r
 gosaAclEntry: 1:psub:$TEACHERSDN64:users/user;r
 gosaAclEntry: 2:psub:Kg==:users/user;sr#personalTitle;w#academicTitle;w#dateOfBirth;w#gender;w#preferredLanguage;w#userPicture;w#homePostalAddress;w#homePhone;w#labeledURI;w,users/password;srw
 gosaAclEntry: 3:role:$ADMINROLEDN64:


=====================================
share/debian-edu-config/d-i/pre-pkgsel
=====================================
@@ -121,12 +121,6 @@ EOF
 auto lo
 iface lo inet loopback
 EOF
-    if [ "$DNSDOMAIN" ] && [ "$NAMESERVER" = "127.0.0.1" ] ; then
-	cat >> $interfaces <<EOF
-    dns-search $DNSDOMAIN
-    dns-nameservers $NAMESERVER
-EOF
-    fi
 
     for interface in eth0 eth1 ; do
 	eval "ifinfo=\$$interface"
@@ -159,6 +153,12 @@ EOF
     gateway $gateway
 EOF
 		fi
+	    if [ "$DNSDOMAIN" ] && [ "$NAMESERVER" = "127.0.0.1" ] ; then
+			cat >> $interfaces <<EOF
+    dns-search $DNSDOMAIN
+    dns-nameservers $NAMESERVER
+EOF
+	    fi
 		cat >> $interfaces <<EOF
 # The commented lines below is to be used if a DHCP server is in use
 #iface $interface inet dhcp


=====================================
share/debian-edu-config/gosa.conf.template
=====================================
@@ -346,7 +346,7 @@
     sendCompressedOutput="true"
     modificationDetectionAttribute="entryCSN"
     language=""
-    theme="default"
+    theme="classic"
     sessionLifetime="7200"
     templateCompileDirectory="/var/spool/gosa"
     debugLevel="0"



View it on GitLab: https://salsa.debian.org/debian-edu/debian-edu-config/-/compare/41a4f5c665d1bb0d9ad9beb14b0ff36632a53e52...d198cdafe9ac999e68fb54eae6e19944d6e8d845

-- 
View it on GitLab: https://salsa.debian.org/debian-edu/debian-edu-config/-/compare/41a4f5c665d1bb0d9ad9beb14b0ff36632a53e52...d198cdafe9ac999e68fb54eae6e19944d6e8d845
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-edu-commits/attachments/20231130/786121af/attachment-0001.htm>


More information about the debian-edu-commits mailing list