summaryrefslogtreecommitdiff
path: root/lib/chef/knife/bootstrap
diff options
context:
space:
mode:
authorsersut <serdar@opscode.com>2014-03-07 16:13:43 -0800
committersersut <serdar@opscode.com>2014-03-10 16:57:57 -0700
commitf2ac6d3e5e0134edd75cfeb1f61f870065c483b2 (patch)
treec28e7209d2b9f8b481f2f85b08e3d61e7f37e025 /lib/chef/knife/bootstrap
parent549e386a6fee8b23793df34b8dfd2979e19ea7fb (diff)
downloadchef-f2ac6d3e5e0134edd75cfeb1f61f870065c483b2.tar.gz
Make the bootstrap messages more user friendly.
Diffstat (limited to 'lib/chef/knife/bootstrap')
-rw-r--r--lib/chef/knife/bootstrap/chef-full.erb3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/chef/knife/bootstrap/chef-full.erb b/lib/chef/knife/bootstrap/chef-full.erb
index 24ffca2c69..1d75117b72 100644
--- a/lib/chef/knife/bootstrap/chef-full.erb
+++ b/lib/chef/knife/bootstrap/chef-full.erb
@@ -23,6 +23,7 @@ install_sh="https://www.opscode.com/chef/install.sh"
version_string="-v <%= chef_version %>"
if ! exists /usr/bin/chef-client; then
+ echo "Installing Chef Client..."
if exists wget; then
bash <(wget <%= "--proxy=on " if knife_config[:bootstrap_proxy] %> ${install_sh} -O -) ${version_string}
elif exists curl; then
@@ -66,4 +67,6 @@ cat > /etc/chef/first-boot.json <<'EOP'
<%= first_boot.to_json %>
EOP
+echo "Starting first Chef Client run..."
+
<%= start_chef %>'