Skip to content
Commits on Source (4)
......@@ -17,7 +17,7 @@ files:
"/etc/default/grub"
edit_line => grub_conf2;
debian.server.installation::
debian.(server|minimal).installation::
"/etc/default/grub"
edit_line => grub_conf3;
......@@ -29,7 +29,7 @@ commands:
"/usr/sbin/update-grub"
contain => in_shell;
debian.!server.!ltspclient.installation::
debian.!server.!minimal.!ltspclient.installation::
"/usr/sbin/plymouth-set-default-theme lines"
contain => in_shell;
......
......@@ -21,6 +21,7 @@ bundle common edu
"workstation" and => { fileexists("/etc/desktop-profiles/debian-edu-menus.listing"), fileexists("/usr/bin/ntpq") };
"roaming" expression => returnszero("/bin/grep 'Roaming-Workstation' /etc/debian-edu/config","noshell");
"standalone" expression => not( fileexists("/usr/bin/ntpq") );
"minimal" expression => returnszero("/bin/grep 'Minimal' /etc/debian-edu/config","noshell");
"ltspclient" expression => fileexists("/usr/bin/getltscfg");
"installation" expression => fileexists("/sbin/start-stop-daemon.REAL");
"testinstall" expression => returnszero("/bin/grep 'TESTINSTALL=\"true\"' /etc/debian-edu/config","noshell");
......
debian-edu-config (2.10.39) UNRELEASED; urgency=medium
* ldap-tools/mkslapdcert: Remove obsolete (random-seed related) workaround.
* cf3/edu.cf: Add class definition for profile 'Minimal'.
* cf3/cf.grub: Adjust configuration for systems with profile 'Minimal'. Keep
legacy interface names to ensure easier configuration as a gateway; don't
run 'plymouth-set-default-theme', plymouth isn't used on a minimal system.
-- Wolfgang Schweer <wschweer@arcor.de> Sun, 30 Sep 2018 23:35:05 +0200
debian-edu-config (2.10.38) unstable; urgency=medium
[ Wolfgang Schweer ]
......
......@@ -28,13 +28,6 @@ if [ ! -f $certconf ] ; then
echo "warning: missing certificate configuration file $certconf." 1>&2
fi
## Somtimes the installer stops when creating the certificate (#630970).
if [ ! -f /var/lib/urandom/random-seed ] ; then
echo "/var/lib/urandom/random-seed not found, invoking /etc/init.d/urandom." 1>&2
mkdir -p /var/lib/urandom
/etc/init.d/urandom start
fi
mkdir -p /etc/ldap/ssl
chmod 751 /etc/ldap/ssl
......