summaryrefslogtreecommitdiff
path: root/lib/chef/resource/cron.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/resource/cron.rb')
-rw-r--r--lib/chef/resource/cron.rb24
1 files changed, 12 insertions, 12 deletions
diff --git a/lib/chef/resource/cron.rb b/lib/chef/resource/cron.rb
index d942b10183..ad8e228152 100644
--- a/lib/chef/resource/cron.rb
+++ b/lib/chef/resource/cron.rb
@@ -135,32 +135,32 @@ class Chef
end
property :time, Symbol,
- description: "A time interval. Possible values: :annually, :daily, :hourly, :midnight, :monthly, :reboot, :weekly, or :yearly.",
- equal_to: Chef::Provider::Cron::SPECIAL_TIME_VALUES
+ description: "A time interval. Possible values: :annually, :daily, :hourly, :midnight, :monthly, :reboot, :weekly, or :yearly.",
+ equal_to: Chef::Provider::Cron::SPECIAL_TIME_VALUES
property :mailto, String,
- description: "Set the MAILTO environment variable."
+ description: "Set the MAILTO environment variable."
property :path, String,
- description: "Set the PATH environment variable."
+ description: "Set the PATH environment variable."
property :home, String,
- description: "Set the HOME environment variable."
+ description: "Set the HOME environment variable."
property :shell, String,
- description: "Set the SHELL environment variable."
+ description: "Set the SHELL environment variable."
property :command, String,
- description: "The command to be run, or the path to a file that contains the command to be run.",
- identity: true
+ description: "The command to be run, or the path to a file that contains the command to be run.",
+ identity: true
property :user, String,
- description: "The name of the user that runs the command. If the user property is changed, the original user for the crontab program continues to run until that crontab program is deleted. This property is not applicable on the AIX platform.",
- default: "root"
+ description: "The name of the user that runs the command. If the user property is changed, the original user for the crontab program continues to run until that crontab program is deleted. This property is not applicable on the AIX platform.",
+ default: "root"
property :environment, Hash,
- description: "A Hash of environment variables in the form of ({'ENV_VARIABLE' => 'VALUE'}).",
- default: lazy { Hash.new }
+ description: "A Hash of environment variables in the form of ({'ENV_VARIABLE' => 'VALUE'}).",
+ default: lazy { Hash.new }
private