diff options
| author | Robert Gemmell <robbie@apache.org> | 2013-10-06 15:10:15 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2013-10-06 15:10:15 +0000 |
| commit | 43287930edd43d6de27118d574aec19f4d1c30d9 (patch) | |
| tree | e387d199912f477c0229f1606e7f6f18540009eb /java | |
| parent | d686e253fac05cfdb0a99874c6585db55c6bca9d (diff) | |
| download | qpid-python-43287930edd43d6de27118d574aec19f4d1c30d9.tar.gz | |
QPID-5048: ensure the file+directory permissions are set as expected when including the scripts and config in the broker release assembly
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1529631 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
| -rw-r--r-- | java/broker/src/main/assembly/qpid-broker-bin.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/java/broker/src/main/assembly/qpid-broker-bin.xml b/java/broker/src/main/assembly/qpid-broker-bin.xml index 950abd7fdb..c7a190bbf2 100644 --- a/java/broker/src/main/assembly/qpid-broker-bin.xml +++ b/java/broker/src/main/assembly/qpid-broker-bin.xml @@ -15,8 +15,18 @@ <include>LICENSE*</include> <include>NOTICE*</include> <include>etc/</include> + </includes> + <fileMode>0644</fileMode> + <directoryMode>0755</directoryMode> + </fileSet> + <fileSet> + <directory>${project.basedir}</directory> + <outputDirectory>/</outputDirectory> + <includes> <include>bin/</include> </includes> + <fileMode>0755</fileMode> + <directoryMode>0755</directoryMode> </fileSet> <fileSet> <directory>${project.basedir}/../common</directory> @@ -24,6 +34,8 @@ <includes> <include>bin/qpid-run</include> </includes> + <fileMode>0755</fileMode> + <directoryMode>0755</directoryMode> </fileSet> </fileSets> <dependencySets> |
