Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Passing --pid_file PID_FILE, --log_file LOG_FILE to knife cluster kick d... #320

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/chef/knife/cluster_kick.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ class ClusterKick < Chef::Knife::ClusterSsh
banner 'knife cluster kick CLUSTER[-FACET[-INDEXES]] (options) - start a run of chef-client on each server, tailing the logs and exiting when the run completes.'

option :pid_file,
:long => "--pid_file",
:long => "--pid_file PID_FILE",
:description => "Where to find the pid file. Typically /var/run/chef/client.pid (init.d) or /etc/sv/chef-client/supervise/pid (runit)",
:default => "/etc/sv/chef-client/supervise/pid"

option :log_file,
:long => "--log_file",
:long => "--log_file LOG_FILE",
:description => "Where to find the log file. Typically /var/log/chef/client.log",
:default => "/var/log/chef/client.log"

Expand Down