Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Vladishev <aleksander.vladishev@zabbix.com>2019-04-29 10:31:27 +0300
committerAlexander Vladishev <aleksander.vladishev@zabbix.com>2019-04-29 10:37:28 +0300
commitd043ced564ef2aede95ee295869c6757ad3313b7 (patch)
treec65ac906f33066ec99d71289d9bb029425bf36aa /build.xml
parente48056e8a139e4e99944772d1418bfef4750aa4f (diff)
.......... [ZBXNEXT-686] fixed script to add RW permissions to the "assets" folder
(cherry picked from commit fbca740beaf50207e1b95e06a2c5d13c709777d9) (cherry picked from commit 4d86c169b44315a9ba6f9b95f6daafd9e8e7dcf3)
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index 45824cb21b8..301a540bc44 100644
--- a/build.xml
+++ b/build.xml
@@ -38,6 +38,12 @@
<replace file="frontends/php/conf/zabbix.conf.php" token="{DBUSER}" value="${dbuser}"/>
<replace file="frontends/php/conf/zabbix.conf.php" token="{DBPASSWORD}" value="${dbpassword}"/>
<replace file="frontends/php/conf/zabbix.conf.php" token="{PHPUNIT_ERROR_LOG}" value="${phpunit_error_log}"/>
+
+ <!-- Set RW acces to the assets -->
+ <exec executable="chmod">
+ <arg line="g+w"/>
+ <arg line="frontends/php/assets"/>
+ </exec>
</target>
<target name="make-dbschema">