From bdca3eab96216fdd46c5f399209e210c4407bd9a Mon Sep 17 00:00:00 2001 From: Toyam Cox Date: Wed, 6 Jan 2016 01:40:49 -0500 Subject: [PATCH] New package: salt-2015.8.3 --- srcpkgs/salt/files/salt-api/run | 2 ++ srcpkgs/salt/files/salt-master/run | 2 ++ srcpkgs/salt/files/salt-minion/run | 2 ++ srcpkgs/salt/files/salt-syndic/run | 2 ++ srcpkgs/salt/template | 26 ++++++++++++++++++++++++++ 5 files changed, 34 insertions(+) create mode 100755 srcpkgs/salt/files/salt-api/run create mode 100755 srcpkgs/salt/files/salt-master/run create mode 100755 srcpkgs/salt/files/salt-minion/run create mode 100755 srcpkgs/salt/files/salt-syndic/run create mode 100644 srcpkgs/salt/template diff --git a/srcpkgs/salt/files/salt-api/run b/srcpkgs/salt/files/salt-api/run new file mode 100755 index 00000000000..0748970d6a4 --- /dev/null +++ b/srcpkgs/salt/files/salt-api/run @@ -0,0 +1,2 @@ +#!/bin/sh +exec salt-api diff --git a/srcpkgs/salt/files/salt-master/run b/srcpkgs/salt/files/salt-master/run new file mode 100755 index 00000000000..928cc01797c --- /dev/null +++ b/srcpkgs/salt/files/salt-master/run @@ -0,0 +1,2 @@ +#!/bin/sh +exec salt-master diff --git a/srcpkgs/salt/files/salt-minion/run b/srcpkgs/salt/files/salt-minion/run new file mode 100755 index 00000000000..e9b71afc37d --- /dev/null +++ b/srcpkgs/salt/files/salt-minion/run @@ -0,0 +1,2 @@ +#!/bin/sh +exec salt-minion diff --git a/srcpkgs/salt/files/salt-syndic/run b/srcpkgs/salt/files/salt-syndic/run new file mode 100755 index 00000000000..80950effa66 --- /dev/null +++ b/srcpkgs/salt/files/salt-syndic/run @@ -0,0 +1,2 @@ +#!/bin/sh +exec salt-syndic diff --git a/srcpkgs/salt/template b/srcpkgs/salt/template new file mode 100644 index 00000000000..0c3edd853f8 --- /dev/null +++ b/srcpkgs/salt/template @@ -0,0 +1,26 @@ +# Template file for 'salt' +pkgname=salt +version=2015.8.3 +revision=1 +build_style=python-module +noarch=yes +pycompile_module="salt" +conf_files="/etc/salt/*" +hostmakedepends="python python-devel" +makedepends="python-devel" +depends="python python-yaml python-MarkupSafe python-Jinja2 python-requests python-pyzmq python-crypto python-M2Crypto python-tornado python-msgpack dmidecode pciutils" +short_desc="Remote execution system, and configuration manager" +maintainer="Toyam Cox " +license="Apache-2.0" +homepage="http://saltstack.org/" +distfiles="$PYPI_SITE/s/salt/salt-${version}.tar.gz" +checksum=2e9a262789b018f3443513105c0c6ae98934c9bc105a04cf9e5c073ef706218a + +post_install() { + vmkdir /etc/salt 0750 + vcopy conf/* /etc/salt/ + vsv salt-api + vsv salt-master + vsv salt-minion + vsv salt-syndic +}