Accepting request 243620 from devel:languages:python

1

OBS-URL: https://build.opensuse.org/request/show/243620
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/salt?expand=0&rev=34
This commit is contained in:
Stephan Kulow 2014-08-05 08:24:27 +00:00 committed by Git OBS Bridge
parent 582ce08600
commit 33d84a8607
5 changed files with 38 additions and 6 deletions

3
salt-2014.1.10.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f175fc0385849fe557c0c91b0331926dacd665ae0ba3aa0d585bd7670d13edc5
size 2813318

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:edba124cb41aff52f6ac348c04bfac2dec2c70d530056f91ef0b31cae639c6bb
size 2812870

View File

@ -1,3 +1,20 @@
-------------------------------------------------------------------
Mon Aug 4 16:12:14 UTC 2014 - aboe76@gmail.com
- RPM spec update
+ added service_add_pre function
-------------------------------------------------------------------
Fri Aug 1 19:41:12 UTC 2014 - aboe76@gmail.com
- Updated to 2014.1.10:
+ Version 2014.1.9 contained a regression which caused inaccurate Salt version
detection, and thus was never packaged for general release. This version
contains the version detection fix, but is otherwise identical to 2014.1.9.
+ Version 2014.1.8 contained a regression which caused inaccurate Salt version
detection, and thus was never packaged for general release. This version
contains the version detection fix, but is otherwise identical to 2014.1.8.
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jul 30 20:22:09 UTC 2014 - aboe76@gmail.com Wed Jul 30 20:22:09 UTC 2014 - aboe76@gmail.com

View File

@ -17,7 +17,7 @@
Name: salt Name: salt
Version: 2014.1.8 Version: 2014.1.10
Release: 0 Release: 0
Summary: A parallel remote execution system Summary: A parallel remote execution system
License: Apache-2.0 License: Apache-2.0
@ -314,6 +314,11 @@ install -Dpm 0644 pkg/salt.bash "%{buildroot}/etc/bash_completion.d/%{name}"
%stop_on_removal salt-syndic %stop_on_removal salt-syndic
%endif %endif
%pre syndic
%if 0%{?_unitdir:1}
%service_add_pre salt-syndic.service
%endif
%post syndic %post syndic
%if 0%{?_unitdir:1} %if 0%{?_unitdir:1}
%service_add_post salt-syndic.service %service_add_post salt-syndic.service
@ -337,6 +342,11 @@ install -Dpm 0644 pkg/salt.bash "%{buildroot}/etc/bash_completion.d/%{name}"
%stop_on_removal salt-master %stop_on_removal salt-master
%endif %endif
%pre master
%if 0%{?_unitdir:1}
%service_add_pre salt-master.service
%endif
%post master %post master
%if 0%{?_unitdir:1} %if 0%{?_unitdir:1}
%service_add_post salt-master.service %service_add_post salt-master.service
@ -360,6 +370,11 @@ install -Dpm 0644 pkg/salt.bash "%{buildroot}/etc/bash_completion.d/%{name}"
%stop_on_removal salt-minion %stop_on_removal salt-minion
%endif %endif
%pre minion
%if 0%{?_unitdir:1}
%service_add_pre salt-minion.service
%endif
%post minion %post minion
%if 0%{?_unitdir:1} %if 0%{?_unitdir:1}
%service_add_post salt-minion.service %service_add_post salt-minion.service

View File

@ -1,7 +1,7 @@
Index: salt-2014.1.8/pkg/salt-master.service Index: salt-2014.1.8/pkg/salt-master.service
=================================================================== ===================================================================
--- salt-2014.1.8.orig/pkg/salt-master.service --- salt-2014.1.10.orig/pkg/salt-master.service
+++ salt-2014.1.8/pkg/salt-master.service +++ salt-2014.1.10/pkg/salt-master.service
@@ -3,8 +3,10 @@ Description=The Salt Master Server @@ -3,8 +3,10 @@ Description=The Salt Master Server
After=syslog.target network.target After=syslog.target network.target