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 | f9d06865c793fe92ce40336f58987fcaae61a0fd (patch) | |
| tree | afd06a474ba2a046dbd6fc26dfe36503533eee53 /qpid/java/broker | |
| parent | 8d3d23040115e9dc5e42ce66534217687209ebf5 (diff) | |
| download | qpid-python-f9d06865c793fe92ce40336f58987fcaae61a0fd.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@1529631 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/broker')
| -rw-r--r-- | qpid/java/broker/src/main/assembly/qpid-broker-bin.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/qpid/java/broker/src/main/assembly/qpid-broker-bin.xml b/qpid/java/broker/src/main/assembly/qpid-broker-bin.xml index 950abd7fdb..c7a190bbf2 100644 --- a/qpid/java/broker/src/main/assembly/qpid-broker-bin.xml +++ b/qpid/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> |
