Hi all,
I have an install routine that should never be executed by puppet automatically.
But I would like to execute it sometimes by running something like this:
puppet agent -t --ignoreschedules --tags never
One idea is to create a schedule
class never{
schedule { 'never':
repeat => 0,
}
exec....
}
or
class never{
schedule { 'never':
periode => never,
}
exec....
}
What is a good solution?
Regards,
Andreas