summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2013-06-30 19:35:32 -0400
committerMicah Anderson <micah@riseup.net>2013-06-30 19:35:32 -0400
commit1d91ef608855059dbb7938dbd59adf2f70220139 (patch)
tree98eed773b58510b52445fc75afc4280f052b0dcd
parent35f9bbda60c38c3b16cd1340b876ee09dd2f7e1d (diff)
Fix 'Failed to call refresh: /usr/local/sbin/reload_dhclient returned 2 instead
of one of [0]' by putting in the missing closing single quote. Change-Id: I86feb5d06dd25e28ea67da0b5627e7be4174e01e
-rw-r--r--puppet/modules/site_config/templates/reload_dhclient.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/puppet/modules/site_config/templates/reload_dhclient.erb b/puppet/modules/site_config/templates/reload_dhclient.erb
index 882c985a..075828b7 100644
--- a/puppet/modules/site_config/templates/reload_dhclient.erb
+++ b/puppet/modules/site_config/templates/reload_dhclient.erb
@@ -1,7 +1,7 @@
#!/bin/sh
# Get the PID
-PIDFILE='/var/run/dhclient.<%= scope.lookupvar('site_config::params::interface') %>.pid
+PIDFILE='/var/run/dhclient.<%= scope.lookupvar('site_config::params::interface') %>.pid'
# Capture how dhclient is currently running so we can relaunch it
dhclient=`/bin/ps --no-headers --pid $(cat $PIDFILE) -f | /usr/bin/awk '{for(i=8;i<=NF;++i) printf("%s ", $i) }'`