#!/bin/bash
#
# Clean Temp dirs
# Daniel Mehemann (Akusari)
# Copyright 2023
#

/usr/bin/find /var/tmp -mtime +14 -delete ||exit 255

exit 0
