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:
parent
4831e3ebdf
commit
08ab164248
|
@ -1,5 +1,5 @@
|
|||
package: PandoraFMS-Agent
|
||||
Version: 3.0.0.rc1
|
||||
Version: 3.0.0.rc2
|
||||
Architecture: all
|
||||
Priority: optional
|
||||
Section: admin
|
||||
|
@ -7,4 +7,4 @@ Installed-Size: 260
|
|||
Maintainer: Miguel de Dios <miguel.dedios@artica.es>
|
||||
Homepage: http://pandorafms.org/
|
||||
Depends: coreutils, perl
|
||||
Description: andora FMS agents are based on native languages in every platform: scripts that can be written in any language. It’s 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. It’s 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.
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# 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."
|
||||
whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
|
||||
|
@ -26,20 +26,21 @@ else
|
|||
echo "Found \"dpkg-debs\"."
|
||||
fi
|
||||
|
||||
cd ..
|
||||
|
||||
echo "Make a \"temp_package\" temp dir for job."
|
||||
mkdir -p temp_package/usr/share/pandora_agent
|
||||
mkdir -p temp_package/var/spool/pandora/data_out
|
||||
mkdir -p temp_package/var/log/pandora/
|
||||
mkdir -p temp_package/etc/pandora
|
||||
mkdir -p temp_package/etc/init.d/
|
||||
|
||||
cd ..
|
||||
mkdir -p temp_package/usr/bin
|
||||
|
||||
echo "Make directory system tree for package."
|
||||
cp DEBIAN temp_package -R
|
||||
|
||||
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
|
||||
TENTACLE=temp_package/usr/bin/tentacle_client
|
||||
PANDORA_CFG=temp_package/etc/pandora
|
||||
|
|
Loading…
Reference in New Issue