From 2db7d16b0d5feafbdca9bf207b3cf2c0f9aca24d Mon Sep 17 00:00:00 2001 From: Sophie Meynieux Date: Fri, 26 Apr 2013 15:06:40 +0200 Subject: [PATCH] [PASSED QA] Bug 10127 : Printoverdues.sh should tar only pdf files Signed-off-by: Chris Cormack Signed-off-by: Katrin Fischer From the bug report: At the end of printoverdues.sh, an archive is generated containing all files present in directory given as parameter. As archives are generated in this given directory, they contain previously generated tar files, creating oversized files. Only .pdf files should be archived All tests and QA script pass. Worked ok in my tests, only packign PDF in the given directory. --- misc/cronjobs/printoverdues.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/cronjobs/printoverdues.sh b/misc/cronjobs/printoverdues.sh index 2cce0934..6819e0c 100755 --- a/misc/cronjobs/printoverdues.sh +++ b/misc/cronjobs/printoverdues.sh @@ -47,4 +47,4 @@ then lp $optprinter $1/*.pdf; fi -tar cvfz $1`date "+%Y%m%d"`.tar.gz $1; +tar cvfzP $1`date "+%Y%m%d"`.tar.gz $1/*.pdf; -- 1.7.9.5