diff --git a/systemd-4.tar.bz2 b/systemd-4.tar.bz2 deleted file mode 100644 index 33cb8239..00000000 --- a/systemd-4.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d569a0624d7ce409cd76ace49d2d853f9e030674e24ea585427b9079f10ba5ba -size 637332 diff --git a/systemd-5.tar.bz2 b/systemd-5.tar.bz2 new file mode 100644 index 00000000..49731a83 --- /dev/null +++ b/systemd-5.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f7460c4b77172e8eeb124dae0b68fc99f30cfa8d38e52c9e6c441fee2c69d5e +size 638175 diff --git a/systemd.changes b/systemd.changes index 7b38d516..cf7bad2d 100644 --- a/systemd.changes +++ b/systemd.changes @@ -1,3 +1,15 @@ +------------------------------------------------------------------- +Wed Aug 4 12:42:23 CEST 2010 - kay.sievers@novell.com + +- version 5 + - selinux fixes +- fix hanging 'reboot' started from vc + +------------------------------------------------------------------- +Mon Aug 2 16:33:20 CEST 2010 - kay.sievers@novell.com + +- enable getty.target by default + ------------------------------------------------------------------- Sat Jul 24 11:16:52 CEST 2010 - kay.sievers@novell.com diff --git a/systemd.spec b/systemd.spec index 959e32b8..36ab5708 100644 --- a/systemd.spec +++ b/systemd.spec @@ -1,5 +1,5 @@ # -# spec file for package systemd (Version 4) +# spec file for package systemd (Version 5) # # Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -20,7 +20,7 @@ Name: systemd Url: http://www.freedesktop.org/wiki/Software/systemd -Version: 4 +Version: 5 Release: 1 License: GPLv2+ Group: System/Base @@ -117,19 +117,23 @@ if [ "$1" -eq 1 ]; then /bin/ln -sf "$target" /etc/systemd/system/default.target 2>&1 || : # Enable the services we install by default. /bin/systemctl enable getty@.service >/dev/null 2>&1 || : + /bin/systemctl enable getty.target >/dev/null 2>&1 || : /bin/systemctl enable remote-fs.target >/dev/null 2>&1 || : /bin/systemctl enable var-run.mount >/dev/null 2>&1 || : /bin/systemctl enable var-lock.mount >/dev/null 2>&1 || : fi # Make sure we always enable these basic services, in case something went # wrong at the time these packages got installed. Usual systems can not -# properly bootup without these services. +# properly work without these services. /bin/systemctl enable udev.service >/dev/null 2>&1 || : /bin/systemctl enable dbus.service >/dev/null 2>&1 || : +# temporary fix +/bin/systemctl enable getty.target >/dev/null 2>&1 || : %preun if [ $1 -eq 0 ]; then /bin/systemctl disable getty@.service >/dev/null 2>&1 || : + /bin/systemctl disable getty.target >/dev/null 2>&1 || : /bin/systemctl disable remote-fs.target >/dev/null 2>&1 || : /bin/systemctl disable var-run.mount >/dev/null 2>&1 || : /bin/systemctl disable var-lock.mount >/dev/null 2>&1 || :