我正在使用 rpm-maven-plugin 为我的应用程序创建一个安装/升级 RPM,它将安装在 CentOS 7 上。
对于新安装,需要一些软件包,但是 rpm-maven-plugin 会忽略 rpm.spec 文件中的设置(因此 'Requires:' 将不起作用)并且无法通过 RPM 脚本执行 yum 或 rpm。
是否有插件配置告诉 RPM 安装所需的包(在这种情况下为 PostgresDB 和 sshpass)?
如果没有,最好的选择是什么?告诉客户在安装 RPM 之前手动安装要求或创建一个处理完整设置的 shell 脚本?
这是 pom.xml 的相关部分:
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>rpm-maven-plugin</artifactId>
<version>${rpm-maven-plugin.version}</version>
<inherited>false</inherited>
<executions>
<execution>
<inherited>false</inherited>
<phase>install</phase>
<goals>
<goal>rpm</goal>
</goals>
</execution>
</executions>
<configuration>
<license>Commercial</license>
<group>Networking/Admin</group>
<name>name</name>
<packager>packager</packager>
<prefix>$prefix</prefix>
<version>${project.version}</version>
<release>release</release>
<needarch>x86_64</needarch>
<mappings>
...
</mappings>
<requires>
<require>postgresql >= ${rpm.postgresql.version}</require>
<require>java-1.8.0-openjdk</require>
<require>sshpass</require>
</requires>
<postinstallScriptlet>
<script>
cd /opt/%{name}
if [ "$1" = 1 ] ; then
if [ -e ./install.sh ]; then
sh ./install.sh;
fi
fi
if [ "$1" = 2 ] ; then
sh ./upgrade.sh
fi
</script>
</postinstallScriptlet>
</configuration>
</plugin>
</plugins>
</build>