27 lines
648 B
Bash
Executable File
27 lines
648 B
Bash
Executable File
#!/bin/bash
|
|
source build_vars.sh
|
|
|
|
if [ ! -d $RPMHOME/RPMS ]; then
|
|
mkdir -p $RPMHOME/RPMS || exit 1
|
|
fi
|
|
|
|
echo "Creating RPM packages in $RPMHOME/RPMS"
|
|
|
|
# Console
|
|
rpmbuild -ba $CODEHOME/pandora_console/pandora_console.spec || exit 1
|
|
|
|
# Server
|
|
rpmbuild -ba $CODEHOME/pandora_server/pandora_server.spec || exit 1
|
|
|
|
# Unix agent
|
|
rpmbuild -ba $CODEHOME/pandora_agents/unix/pandora_agent.spec || exit 1
|
|
|
|
# Enterprise console
|
|
rpmbuild -ba $PANDHOME_ENT/pandora_console/enterprise/pandora_console_enterprise.spec || exit 1
|
|
|
|
# Enterprise server
|
|
rpmbuild -ba $PANDHOME_ENT/pandora_server/PandoraFMS-Enterprise/pandora_server_enterprise.spec || exit 1
|
|
|
|
exit 0
|
|
|