2009-11-10 Sancho Lerena <slerena@artica.es>

* linux/DEBIAN/control: Updated to RC2.

        * linux/DEBIAN/make_deb_package.sh: /usr/bin/pandora_agent was not being copied
        FIXED. DEB package tested and running fine in latest Debian Stable.




git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2099 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
slerena 2009-11-10 00:52:18 +00:00
parent 4831e3ebdf
commit 08ab164248
2 changed files with 7 additions and 6 deletions

View File

@ -1,5 +1,5 @@
package: PandoraFMS-Agent package: PandoraFMS-Agent
Version: 3.0.0.rc1 Version: 3.0.0.rc2
Architecture: all Architecture: all
Priority: optional Priority: optional
Section: admin Section: admin
@ -7,4 +7,4 @@ Installed-Size: 260
Maintainer: Miguel de Dios <miguel.dedios@artica.es> Maintainer: Miguel de Dios <miguel.dedios@artica.es>
Homepage: http://pandorafms.org/ Homepage: http://pandorafms.org/
Depends: coreutils, perl Depends: coreutils, perl
Description: andora FMS agents are based on native languages in every platform: scripts that can be written in any language. Its possible to reproduce any agent in any programming language and can be extended without difficulty the existing ones in order to cover aspects not taken into account up to the moment. These scripts are formed by modules that each one gathers a "chunk" of information. Thus, every agent gathers several "chunks" of information; this one is organized in a data set and stored in a single file, called data file. Description: Pandora FMS agents are based on native languages in every platform: scripts that can be written in any language. Its possible to reproduce any agent in any programming language and can be extended without difficulty the existing ones in order to cover aspects not taken into account up to the moment. These scripts are formed by modules that each one gathers a "chunk" of information. Thus, every agent gathers several "chunks" of information; this one is organized in a data set and stored in a single file, called data file.

View File

@ -14,7 +14,7 @@
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details. # GNU General Public License for more details.
pandora_agent_version="3.0.0.rc1" pandora_agent_version="3.0.0.rc2"
echo "Test if you has the tools for to make the packages." echo "Test if you has the tools for to make the packages."
whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
@ -26,20 +26,21 @@ else
echo "Found \"dpkg-debs\"." echo "Found \"dpkg-debs\"."
fi fi
cd ..
echo "Make a \"temp_package\" temp dir for job." echo "Make a \"temp_package\" temp dir for job."
mkdir -p temp_package/usr/share/pandora_agent mkdir -p temp_package/usr/share/pandora_agent
mkdir -p temp_package/var/spool/pandora/data_out mkdir -p temp_package/var/spool/pandora/data_out
mkdir -p temp_package/var/log/pandora/ mkdir -p temp_package/var/log/pandora/
mkdir -p temp_package/etc/pandora mkdir -p temp_package/etc/pandora
mkdir -p temp_package/etc/init.d/ mkdir -p temp_package/etc/init.d/
mkdir -p temp_package/usr/bin
cd ..
echo "Make directory system tree for package." echo "Make directory system tree for package."
cp DEBIAN temp_package -R cp DEBIAN temp_package -R
PANDORA_LOG=temp_package/var/log/pandora/pandora_agent.log PANDORA_LOG=temp_package/var/log/pandora/pandora_agent.log
PANDORA_BIN=temp_package/usr/bin PANDORA_BIN=temp_package/usr/bin/pandora_agent
PANDORA_HOME=temp_package/usr/share/pandora_agent PANDORA_HOME=temp_package/usr/share/pandora_agent
TENTACLE=temp_package/usr/bin/tentacle_client TENTACLE=temp_package/usr/bin/tentacle_client
PANDORA_CFG=temp_package/etc/pandora PANDORA_CFG=temp_package/etc/pandora