~ubuntu-branches/ubuntu/gutsy/sysstat/gutsy

« back to all changes in this revision

Viewing changes to sa2.sh

  • Committer: Bazaar Package Importer
  • Author(s): Robert Luberda
  • Date: 2005-10-05 20:44:33 UTC
  • mfrom: (1.1.2 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20051005204433-v20r8ptt8ms2690u
Tags: 6.0.1-3
Swedish debconf templates translation (closes: #331184).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
# PREFIX/lib/sa/sa2.sh
3
 
# (C) 1999-2004 Sebastien Godard (sysstat <at> wanadoo.fr)
4
 
#
5
 
S_TIME_FORMAT=ISO ; export S_TIME_FORMAT
6
 
umask 0022
7
 
DATE=`date YESTERDAY +%d`
8
 
RPT=SA_DIR/sar${DATE}
9
 
ENDIR=BIN_DIR
10
 
DFILE=SA_DIR/sa${DATE}
11
 
[ -f "$DFILE" ] || exit 0
12
 
cd ${ENDIR}
13
 
${ENDIR}/sar.sysstat $* -f ${DFILE} > ${RPT}
14
 
find SA_DIR \( -name 'sar??' -o -name 'sa??' \) -mtime +HISTORY -exec rm -f {} \;
15