In my pom.xml
<artifactId>rpm-maven-plugin</artifactId>
<version>2.0.1</version>
<goal>rpm</goal>
...
<mapping>
<directory>/etc/conf</directory>
<username>ME</username>
<groupname>ME</groupname>
<sources>
<source>
<location>../install.properties</location>
</source>
</sources>
</mapping>
...
When use the above /etc/conf
folder get created with ME:ME
permission.
<mapping>
<directory>/etc/conf</directory>
<username>ME</username>
<groupname>ME</groupname>
<sources>
<source>
<location>../install.properties</location>
</source>
</sources>
</mapping>
<mapping>
<directory>/etc/conf</directory>
<username>ME</username>
<groupname>ME</groupname>
<sources>
<source>
<location>../install2.properties</location>
</source>
</sources>
</mapping>
But when i add another mapping the /etc/conf
folder gets created with root:root
What am i missing ?