File: cron.daily

package info (click to toggle)
debmake 3.5.18
  • links: PTS
  • area: main
  • in suites: slink
  • size: 408 kB
  • ctags: 21
  • sloc: sh: 785; makefile: 217
file content (8 lines) | stat: -rw-r--r-- 145 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
#!/bin/sh

cd /var/log/mgetty
for LOG in mg_*log; do
   if [ -f $LOG ]; then
      savelog -g adm -m 644 -u root -c 7 $LOG >/dev/null
   fi
done