summaryrefslogtreecommitdiff
path: root/sysvinit
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@yahoo-inc.com>2014-01-17 10:45:11 -0800
committerJoshua Harlow <harlowja@yahoo-inc.com>2014-01-17 10:45:11 -0800
commitb9d98f16d1c23c213c4039cf504a08d06624dec8 (patch)
treec80a3f96b583993d23766ea738143abf08d2d852 /sysvinit
parent0f217e3983c79593ea56824256f3504b83f20a83 (diff)
downloadvyos-cloud-init-b9d98f16d1c23c213c4039cf504a08d06624dec8.tar.gz
vyos-cloud-init-b9d98f16d1c23c213c4039cf504a08d06624dec8.zip
Fix curly braces
Diffstat (limited to 'sysvinit')
-rwxr-xr-xsysvinit/freebsd/cloudconfig3
-rwxr-xr-xsysvinit/freebsd/cloudfinal3
-rwxr-xr-xsysvinit/freebsd/cloudinit3
-rwxr-xr-xsysvinit/freebsd/cloudinitlocal3
4 files changed, 8 insertions, 4 deletions
diff --git a/sysvinit/freebsd/cloudconfig b/sysvinit/freebsd/cloudconfig
index 978c32b8..53e92ea3 100755
--- a/sysvinit/freebsd/cloudconfig
+++ b/sysvinit/freebsd/cloudconfig
@@ -25,7 +25,8 @@ cloudinit_override()
fi
}
-cloudconfig_start() {
+cloudconfig_start()
+{
echo "${command} starting"
${command} ${cloudinit_config} modules --mode config
}
diff --git a/sysvinit/freebsd/cloudfinal b/sysvinit/freebsd/cloudfinal
index 7f0cf599..c0a4d369 100755
--- a/sysvinit/freebsd/cloudfinal
+++ b/sysvinit/freebsd/cloudfinal
@@ -26,7 +26,8 @@ cloudinit_override()
fi
}
-cloudfinal_start() {
+cloudfinal_start()
+{
echo -n "${command} starting"
${command} ${cloudinit_config} modules --mode final
}
diff --git a/sysvinit/freebsd/cloudinit b/sysvinit/freebsd/cloudinit
index 86a11a6e..a6976511 100755
--- a/sysvinit/freebsd/cloudinit
+++ b/sysvinit/freebsd/cloudinit
@@ -25,7 +25,8 @@ cloudinit_override()
fi
}
-cloudinit_start() {
+cloudinit_start()
+{
echo -n "${command} starting"
${command} ${cloudinit_config} init
}
diff --git a/sysvinit/freebsd/cloudinitlocal b/sysvinit/freebsd/cloudinitlocal
index c3e61f40..854c79d6 100755
--- a/sysvinit/freebsd/cloudinitlocal
+++ b/sysvinit/freebsd/cloudinitlocal
@@ -25,7 +25,8 @@ cloudinit_override()
fi
}
-cloudlocal_start() {
+cloudlocal_start()
+{
echo -n "${command} starting"
${command} ${cloudinit_config} init --local
}