Skip to content

Instantly share code, notes, and snippets.

@maraca
Created October 16, 2013 17:54
Show Gist options
  • Select an option

  • Save maraca/7012033 to your computer and use it in GitHub Desktop.

Select an option

Save maraca/7012033 to your computer and use it in GitHub Desktop.
Find chef node that did not successfully register
knife search 'role:*' | grep 'Node Name' | awk '{print $3}' | sort > /tmp/search
knife node list | sort > /tmp/list
diff /tmp/search /tmp/list | colordiff
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment