Skip to content

Commit

Permalink
Fix cleanup not working
Browse files Browse the repository at this point in the history
  • Loading branch information
rmens authored Jun 16, 2016
1 parent a48c59d commit 276b1e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion audiologger.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if [ !$LOGDIR ];
fi

## Oude bestanden verwijderen
/usr/bin/find $LOGDIR -type f -mtime +$KEEP -exec rm {} \;
/usr/bin/find $LOGDIR -type f -mtime +$KEEP -exec /bin/rm {} \;

## Vorige uur killen
pids=$(/usr/bin/pgrep -f $STREAMURL)
Expand Down

0 comments on commit 276b1e0

Please sign in to comment.