Page MenuHomeDevCentral

D1937.id4896.diff
No OneTemporary

D1937.id4896.diff

diff --git a/pillar/webserver/sites.sls b/pillar/webserver/sites.sls
--- a/pillar/webserver/sites.sls
+++ b/pillar/webserver/sites.sls
@@ -58,6 +58,12 @@
# Username must be unique and use max 31 characters.
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+php_custom_builds:
+ php56:
+ mode: release
+ version: 5.6.38
+ hash: d65b231bbdd63be4439ef5ced965cfd63e62983429dbd4dfcfb49981593ebc03
+
php_fpm_instances:
# PHP 7.2, generally installed as package/port
prod:
diff --git a/roles/webserver-legacy/php-builder/init.sls b/roles/webserver-legacy/php-builder/init.sls
new file mode 100644
--- /dev/null
+++ b/roles/webserver-legacy/php-builder/init.sls
@@ -0,0 +1,10 @@
+# -------------------------------------------------------------
+# Salt — Compile custom PHP builds
+# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+# Project: Nasqueron
+# Created: 2018-10-16
+# License: Trivial work, not eligible to copyright
+# -------------------------------------------------------------
+
+include:
+ - source
diff --git a/roles/webserver-legacy/php-builder/source.sls b/roles/webserver-legacy/php-builder/source.sls
new file mode 100644
--- /dev/null
+++ b/roles/webserver-legacy/php-builder/source.sls
@@ -0,0 +1,34 @@
+# -------------------------------------------------------------
+# Salt — Compile custom PHP builds
+# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+# Project: Nasqueron
+# Created: 2018-10-16
+# License: Trivial work, not eligible to copyright
+# -------------------------------------------------------------
+
+# -------------------------------------------------------------
+# Root directory
+# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+
+/opt/php:
+ file.directory:
+ - user: builder
+
+# -------------------------------------------------------------
+# Source code
+# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+
+{% for build_name, build in pillar['php_custom_builds'].items() %}
+
+{% if build["mode"] == "release" %}
+
+php_build_archive_{{ build_name }}:
+ archive.extracted:
+ - name: /opt/php/{{ build_name }}
+ - source: http://fr2.php.net/get/php-{{ build['version'] }}.tar.bz2/from/this/mirror
+ - source_hash: {{ build['hash'] }}
+ - user: builder
+
+{% endif %}
+
+{% endfor %}

File Metadata

Mime Type
text/plain
Expires
Sun, Apr 6, 00:59 (7 h, 46 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2541053
Default Alt Text
D1937.id4896.diff (2 KB)

Event Timeline