* Wed Aug 11 2010 Jiri Skala <jskala@redhat.com> - 2.0.5-2

- fixes #617317 - Providing native systemd file for upcoming F14 Feature Systemd
This commit is contained in:
Jiri Skala 2010-08-11 16:59:17 +02:00
parent 3f93e77654
commit 1f2e7eb6c4
2 changed files with 37 additions and 2 deletions

17
acpid.service Normal file
View File

@ -0,0 +1,17 @@
[Unit]
Description=ACPI Event Daemon
After=syslog.target
# This could probably benefit from socket activation, but honestly I think it
# is time for acpid to go away, and hence I am not planning to spend the time
# to add socket activation here. We use Type=forking to ensure that the
# communication sockets are in place before boot proceeds with any service
# needing this service. Would acpid support socket activation we could use
# Type=simple here.
[Service]
Type=forking
ExecStart=/usr/sbin/acpid
[Install]
WantedBy=multi-user.target

View File

@ -1,7 +1,7 @@
Summary: ACPI Event Daemon Summary: ACPI Event Daemon
Name: acpid Name: acpid
Version: 2.0.5 Version: 2.0.5
Release: 1%{?dist} Release: 2%{?dist}
License: GPLv2+ License: GPLv2+
Group: System Environment/Daemons Group: System Environment/Daemons
Source: http://tedfelix.com/linux/acpid-%{version}.tar.gz Source: http://tedfelix.com/linux/acpid-%{version}.tar.gz
@ -9,6 +9,7 @@ Source1: acpid.init
Source2: acpid.video.conf Source2: acpid.video.conf
Source3: acpid.power.conf Source3: acpid.power.conf
Source4: acpid.power.sh Source4: acpid.power.sh
Source5: acpid.service
Patch1: acpid-2.0.2-makefile.patch Patch1: acpid-2.0.2-makefile.patch
@ -18,6 +19,7 @@ URL: http://tedfelix.com/linux/acpid-netlink.html
Requires(post): /sbin/chkconfig Requires(post): /sbin/chkconfig
Requires(preun): /sbin/chkconfig Requires(preun): /sbin/chkconfig
Requires(preun): /sbin/service Requires(preun): /sbin/service
Requires: systemd-units
%description %description
@ -40,10 +42,12 @@ make install DESTDIR=$RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/acpi/events mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/acpi/events
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/acpi/actions mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/acpi/actions
mkdir -p $RPM_BUILD_ROOT/lib/systemd/system
chmod 755 $RPM_BUILD_ROOT%{_sysconfdir}/acpi/events chmod 755 $RPM_BUILD_ROOT%{_sysconfdir}/acpi/events
install -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/acpi/events/videoconf install -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/acpi/events/videoconf
install -m 644 %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/acpi/events/powerconf install -m 644 %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/acpi/events/powerconf
install -m 755 %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/acpi/actions/power.sh install -m 755 %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/acpi/actions/power.sh
install -m 644 %{SOURCE5} $RPM_BUILD_ROOT/lib/systemd/system
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d
install -m 755 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d/acpid install -m 755 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d/acpid
@ -56,6 +60,7 @@ rm -rf $RPM_BUILD_ROOT
%files %files
%defattr(-,root,root) %defattr(-,root,root)
%doc COPYING README Changelog TODO TESTPLAN %doc COPYING README Changelog TODO TESTPLAN
/lib/systemd/system/%{name}.service
%dir %{_sysconfdir}/acpi %dir %{_sysconfdir}/acpi
%dir %{_sysconfdir}/acpi/events %dir %{_sysconfdir}/acpi/events
%dir %{_sysconfdir}/acpi/actions %dir %{_sysconfdir}/acpi/actions
@ -82,20 +87,33 @@ if [ "$1" = "2" ]; then
fi fi
%post %post
/sbin/chkconfig --add acpid if [ $1 -eq 1 ]; then
/sbin/chkconfig --add acpid
/bin/systemctl enable %{name}.service > /dev/null 2>&1 || :
fi
%preun %preun
if [ "$1" = "0" ]; then if [ "$1" = "0" ]; then
/sbin/service acpid stop >/dev/null 2>&1 /sbin/service acpid stop >/dev/null 2>&1
/sbin/chkconfig --del acpid /sbin/chkconfig --del acpid
/bin/systemctl disable %{name}.service %{name}.socket > /dev/null 2>&1 || :
/bin/systemctl stop %{name}.service %{name}.socket > /dev/null 2>&1 || :
fi fi
%postun %postun
if [ "$1" -ge "1" ]; then if [ "$1" -ge "1" ]; then
/sbin/service acpid condrestart >/dev/null 2>&1 /sbin/service acpid condrestart >/dev/null 2>&1
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
/bin/systemctl try-restart %{name}.service > /dev/null 2>&1 || :
fi fi
%changelog %changelog
* Wed Aug 11 2010 Jiri Skala <jskala@redhat.com> - 2.0.5-2
- fixes #617317 - Providing native systemd file for upcoming F14 Feature Systemd
* Tue Jul 13 2010 Jiri Skala <jskala@redhat.com> - 2.0.5-1 * Tue Jul 13 2010 Jiri Skala <jskala@redhat.com> - 2.0.5-1
- latest upstream version - latest upstream version
- fixes #613315 kernel-2.6.35 doesn't create /proc/acpi/event - fixes #613315 kernel-2.6.35 doesn't create /proc/acpi/event