summaryrefslogtreecommitdiffstats
path: root/zsh/oh-my-zsh/plugins/knife/README.md
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
committerLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
commita62114c91f2070c8c8453d117f3d81dc113e41ff (patch)
treef266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/plugins/knife/README.md
parentaf120ab348f2e1a5a39dec035ed9dcf84189a64e (diff)
downloaddotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/plugins/knife/README.md')
-rw-r--r--zsh/oh-my-zsh/plugins/knife/README.md25
1 files changed, 0 insertions, 25 deletions
diff --git a/zsh/oh-my-zsh/plugins/knife/README.md b/zsh/oh-my-zsh/plugins/knife/README.md
deleted file mode 100644
index b167f16..0000000
--- a/zsh/oh-my-zsh/plugins/knife/README.md
+++ /dev/null
@@ -1,25 +0,0 @@
-# knife plugin
-
-This plugin adds completion for [knife](https://docs.chef.io/knife.html), a command-line tool
-to interact with [Chef](https://chef.io), a platform to automate and manage infrastructure via
-code.
-
-To use it, add `knife` to the plugins array in your zshrc file:
-```zsh
-plugins=(... knife)
-```
-
-## Options
-
-- `KNIFE_RELATIVE_PATH`: if set to `true`, the completion script will look for local cookbooks
- under the `cookbooks` folder in the chef root directory. It has preference over the other two
- options below. **Default:** empty.
-
-- `KNIFE_COOKBOOK_PATH`: if set, it points to the folder that contains local cookbooks, for
- example: `/path/to/my/chef/cookbooks`. **Default:** `cookbook_path` field in `knife.rb`
- (see below).
-
-- `KNIFE_CONF_PATH`: variable pointing to the `knife.rb` configuration file, for example
- `/path/to/my/.chef/knife.rb`. Only used if `$KNIFE_COOKBOOK_PATH` isn't set. If it exists,
- `$PWD/.chef/knife.rb` is used instead. Otherwise, if it's set, its value is used.
- **Default**: `$HOME/.chef/knife.rb`.