Report abuse

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$tmpcron = fqdn_rand(60)
                cron { weblogreports:
                    command => "apache blah/archive.sh > /dev/null",
                    user => root,
                    minute => $tmpcron,
                }

or

$tmpcron = fqdn_rand(60)
                cron { weblogreports:
                    command => "apache blah/archive.sh > /dev/null",
                    user => root,
                    minute => "${tmpcron}",
                }