package Distribution::Cleanup::Command::JobScheduler;

use strict;

use lib '/app/tools/distribution/lib';

use lib '/app/tools/common/lib';
use Common::Assert;

use Data::Dumper;

use base 'Distribution::Cleanup::Command';

sub synopsis {
    'Clear out the job scheduler log file';
}

sub description {
    return <<EOF;
Truncate the job scheduler log file.  Currently these logs aren't roled because
the information in them isn't all together useful for day to day operations.
EOF
}

sub execute {
    print "all clean\n";
}

1;
