From 06c31ac969a9239b09b50c7992fc18dccfa41824 Mon Sep 17 00:00:00 2001 From: Mark Small Date: Sun, 4 May 2014 23:38:06 +0100 Subject: [PATCH] Add commonly used aliases: * Renamed alias to allow the more common usage to use the shorter form alias. * Added alias to get catalog from master. * Added alias to test getting catalog from master without actually doing it. --- custom/plugins/puppet/puppet.plugin.zsh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/custom/plugins/puppet/puppet.plugin.zsh b/custom/plugins/puppet/puppet.plugin.zsh index 79a35b3e9..e485eddbd 100644 --- a/custom/plugins/puppet/puppet.plugin.zsh +++ b/custom/plugins/puppet/puppet.plugin.zsh @@ -1 +1,5 @@ -alias pa='puppet apply' +alias pa='puppet agent' +alias pat='puppet agent -t' +alias patnp='puppet agent -t --noop' + +alias pap='puppet apply'