commit at for openSUSE:Factory
Hello community, here is the log from the commit of package at for openSUSE:Factory checked in at 2013-06-29 14:22:41 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/at (Old) and /work/SRC/openSUSE:Factory/.at.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "at" Changes: -------- --- /work/SRC/openSUSE:Factory/at/at.changes 2013-06-19 14:42:11.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.at.new/at.changes 2013-06-29 14:22:43.000000000 +0200 @@ -1,0 +2,5 @@ +Thu Jun 20 01:52:46 UTC 2013 - crrodriguez@opensuse.org + +- at.sleep move away from pm-utils to systemd-sleep + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ at.spec ++++++ --- /var/tmp/diff_new_pack.jRCMyw/_old 2013-06-29 14:22:44.000000000 +0200 +++ /var/tmp/diff_new_pack.jRCMyw/_new 2013-06-29 14:22:44.000000000 +0200 @@ -66,7 +66,7 @@ %if 0%{?suse_version} > 1140 BuildRequires: libHX-devel BuildRequires: pkgconfig -BuildRequires: systemd +BuildRequires: pkgconfig(systemd) %{?systemd_requires} %define has_systemd 1 %endif @@ -119,9 +119,9 @@ ln -sf ../../etc/init.d/atd $RPM_BUILD_ROOT%{_sbindir}/rcatd install -m644 %SOURCE2 $RPM_BUILD_ROOT/etc/pam.d/atd install -m644 %SOURCE3 $RPM_BUILD_ROOT/var/adm/fillup-templates -%{__install} -D -m 0755 %{S:4} %{buildroot}%{_sysconfdir}/pm/sleep.d/99%{name} %if 0%{?has_systemd} install -D -m 0644 %{S:5} %{buildroot}%{_unitdir}/atd.service +%{__install} -D -m 0755 %{S:4} %{buildroot}%{_prefix}/lib/systemd/system-sleep/atd.sh %endif %pre @@ -163,9 +163,6 @@ %defattr(-,root,root) %doc Problems Copyright COPYING README ChangeLog timespec %config(noreplace) /etc/at.deny -%dir %{_sysconfdir}/pm -%dir %{_sysconfdir}/pm/sleep.d -%config %{_sysconfdir}/pm/sleep.d/99%{name} %{_sbindir}/rcatd %config /etc/init.d/atd %config %attr(644,root,root) /etc/pam.d/atd @@ -182,6 +179,7 @@ /var/adm/fillup-templates/sysconfig.atd %if 0%{?has_systemd} %{_unitdir}/atd.service +%{_prefix}/lib/systemd/system-sleep/atd.sh %endif %changelog ++++++ at.sleep ++++++ --- /var/tmp/diff_new_pack.jRCMyw/_old 2013-06-29 14:22:44.000000000 +0200 +++ /var/tmp/diff_new_pack.jRCMyw/_new 2013-06-29 14:22:44.000000000 +0200 @@ -1,16 +1,9 @@ -#!/bin/bash - -. $PM_UTILS_LIBDIR/functions - -case "$1" in - hibernate|suspend) - stopservice atd - ;; - thaw|resume) - restartservice atd - ;; - *) - ;; +#!/bin/sh +case $1/$2 in + pre/*) + systemctl --quiet is-enabled atd && systemctl stop atd + ;; + post/*) + systemctl --quiet is-enabled atd && systemctl restart atd + ;; esac - -exit 0 -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de