2010-11-01 Miguel de Dios <miguel.dedios@artica.es>

* DEBIAN/make_deb_package.sh: fixed recursive infinite loop with try to
	copy "temp_package" into "temp_package/usr/share/pandora_agent/temp_package"
	again and again.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3488 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2010-11-01 17:46:29 +00:00
parent 466df2a31f
commit a4d44e6ae5
2 changed files with 17 additions and 1 deletions

View File

@ -44,7 +44,17 @@ echo "Make directory system tree for package."
cp DEBIAN temp_package -R
chmod 755 -R temp_package/DEBIAN
cp -aRf * temp_package/usr/share/pandora_agent/
#Next lines is same to
#cp -aRf * temp_package/usr/share/pandora_agent/
#but don't copy recursive the temp_package into temp_package
for item in `ls`
do
if [ $item != 'temp_package' ]
then
cp -aRf $item temp_package/usr/share/pandora_agent/
fi
done
cp -aRf tentacle_client temp_package/usr/bin/
cp -aRf pandora_agent temp_package/usr/bin/
cp -aRf pandora_exec temp_package/usr/bin/

View File

@ -1,3 +1,9 @@
2010-11-01 Miguel de Dios <miguel.dedios@artica.es>
* DEBIAN/make_deb_package.sh: fixed recursive infinite loop with try to
copy "temp_package" into "temp_package/usr/share/pandora_agent/temp_package"
again and again.
2010-11-01 Sancho Lerena <slerena@artica.es>
* DEBIAN/control,