forked from pool/systemd
- version 29:
+ enable chkconfig support in systemctl for openSUSE. + systemctl: plug a leak upon create_symlink mismatch + mount /run without MS_NOEXEC + dbus: fix name of capability property + systemctl: fix double unref of a dbus message + cryptsetup-generator: fix /etc/cryptsetup options + selinux: selinuxfs can be mounted on /sys/fs/selinux + readahead-common: fix total memory size detection + systemctl: fix 'is-enabled' for native units under /lib + systemctl: fix a FILE* leak + pam-module: add debug= parameter + remote-fs.target: do not order after network.target - update tarball url. OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd?expand=0&rev=156
This commit is contained in:
parent
ff6761a925
commit
5ea584b195
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:92e98fe32c7cff50933a3b865e28efba870fbacfa51cd58f2d13f117eb31a2c6
|
||||
size 816790
|
3
systemd-29.tar.bz2
Normal file
3
systemd-29.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c41153c3ebab9e25b16fa1670946ce6dfdd1515608a37eedd80d2bbe46629971
|
||||
size 810407
|
@ -1,3 +1,21 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 17 09:34:24 UTC 2011 - fcrozat@novell.com
|
||||
|
||||
- version 29:
|
||||
+ enable chkconfig support in systemctl for openSUSE.
|
||||
+ systemctl: plug a leak upon create_symlink mismatch
|
||||
+ mount /run without MS_NOEXEC
|
||||
+ dbus: fix name of capability property
|
||||
+ systemctl: fix double unref of a dbus message
|
||||
+ cryptsetup-generator: fix /etc/cryptsetup options
|
||||
+ selinux: selinuxfs can be mounted on /sys/fs/selinux
|
||||
+ readahead-common: fix total memory size detection
|
||||
+ systemctl: fix 'is-enabled' for native units under /lib
|
||||
+ systemctl: fix a FILE* leak
|
||||
+ pam-module: add debug= parameter
|
||||
+ remote-fs.target: do not order after network.target
|
||||
- update tarball url.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 15 10:00:29 UTC 2011 - saschpe@suse.de
|
||||
|
||||
|
23
systemd.spec
23
systemd.spec
@ -21,8 +21,8 @@
|
||||
|
||||
Name: systemd
|
||||
Url: http://www.freedesktop.org/wiki/Software/systemd
|
||||
Version: 28
|
||||
Release: 2
|
||||
Version: 29
|
||||
Release: 1
|
||||
License: GPLv2+
|
||||
Group: System/Base
|
||||
Summary: A System and Session Manager
|
||||
@ -43,7 +43,7 @@ Requires: kbd
|
||||
Requires: util-linux >= 2.19
|
||||
Conflicts: filesystem < 11.5
|
||||
Conflicts: mkinitrd < 2.7.0
|
||||
Source0: http://www.freedesktop.org/software/systemd/releases/%{name}-%{version}.tar.bz2
|
||||
Source0: http://www.freedesktop.org/software/systemd/%{name}-%{version}.tar.bz2
|
||||
Source1: systemd-rpmlintrc
|
||||
Patch1: 0001-Add-bootsplash-handling-for-password-dialogs.patch
|
||||
|
||||
@ -52,6 +52,7 @@ Patch1: 0001-Add-bootsplash-handling-for-password-dialogs.patch
|
||||
# in the patch. Any patches added here without a very good reason to make
|
||||
# an exception will be silently removed with the next version update.
|
||||
|
||||
|
||||
%description
|
||||
Systemd is a system and service manager, compatible with SysV and LSB
|
||||
init scripts for Linux. systemd provides aggressive parallelization
|
||||
@ -68,6 +69,7 @@ Group: System/Base
|
||||
Summary: Graphical front-end for systemd
|
||||
Requires: %{name} = %{version}
|
||||
|
||||
|
||||
%description gtk
|
||||
Graphical front-end for systemd system and service manager.
|
||||
|
||||
@ -80,11 +82,13 @@ Provides: sbin_init
|
||||
Conflicts: sysvinit
|
||||
Conflicts: upstart
|
||||
|
||||
|
||||
%description sysvinit
|
||||
Drop-in replacement of System V init tools.
|
||||
|
||||
%if %{build_plymouth}
|
||||
|
||||
|
||||
%package plymouth
|
||||
License: GPLv2+
|
||||
Group: System/Base
|
||||
@ -92,14 +96,17 @@ Summary: Plymouth support for systemd
|
||||
Requires: %{name} = %{version}
|
||||
Requires: plymouth
|
||||
|
||||
|
||||
%description plymouth
|
||||
Plymouth integration for systemd
|
||||
%endif
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch1 -p1
|
||||
|
||||
|
||||
%build
|
||||
autoreconf -fiv
|
||||
# prevent pre-generated and distributed files from re-building
|
||||
@ -115,6 +122,7 @@ export V=1
|
||||
touch *.vala */*.vala
|
||||
make %{?_smp_mflags}
|
||||
|
||||
|
||||
%install
|
||||
%makeinstall
|
||||
find %{buildroot} -type f -name '*.la' -exec rm -f {} ';'
|
||||
@ -154,6 +162,7 @@ ln -s systemd-random-seed-load.service %{buildroot}/lib/systemd/system/random.se
|
||||
(cd %{buildroot} && find . -name '*plymouth*') > files.plymouth
|
||||
%endif
|
||||
|
||||
|
||||
%post
|
||||
/bin/systemd-machine-id-setup >/dev/null 2>&1 || :
|
||||
/bin/systemctl daemon-reexec >/dev/null 2>&1 || :
|
||||
@ -174,6 +183,7 @@ if [ "$1" -eq 1 ]; then
|
||||
remote-fs.target >/dev/null 2>&1 || :
|
||||
fi
|
||||
|
||||
|
||||
%preun
|
||||
if [ $1 -eq 0 ]; then
|
||||
/bin/systemctl disable \
|
||||
@ -184,9 +194,11 @@ if [ $1 -eq 0 ]; then
|
||||
rm -f /etc/systemd/system/default.target 2>&1 || :
|
||||
fi
|
||||
|
||||
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
/bin/systemd
|
||||
@ -260,6 +272,7 @@ rm -rf %{buildroot}
|
||||
%dir %{_sysconfdir}/bash_completion.d
|
||||
/etc/bash_completion.d/systemctl-bash-completion.sh
|
||||
|
||||
|
||||
%files gtk
|
||||
%defattr(-,root,root,-)
|
||||
%{_bindir}/systemadm
|
||||
@ -268,6 +281,7 @@ rm -rf %{buildroot}
|
||||
|
||||
%if %{build_plymouth}
|
||||
|
||||
|
||||
%files plymouth
|
||||
%defattr(-,root,root,-)
|
||||
/lib/systemd/system/plymouth-*.service
|
||||
@ -275,6 +289,7 @@ rm -rf %{buildroot}
|
||||
/lib/systemd/system/systemd-ask-password-plymouth.*
|
||||
%endif
|
||||
|
||||
|
||||
%files sysvinit
|
||||
%defattr(-,root,root,-)
|
||||
/sbin/init
|
||||
@ -292,4 +307,6 @@ rm -rf %{buildroot}
|
||||
%{_mandir}/man8/telinit.8*
|
||||
%{_mandir}/man8/runlevel.8*
|
||||
|
||||
|
||||
|
||||
%changelog
|
||||
|
Loading…
Reference in New Issue
Block a user