diff options
author | Harm Weites <harm@weites.com> | 2014-08-09 08:09:02 +0000 |
---|---|---|
committer | Harm Weites <harm@weites.com> | 2014-08-09 08:09:02 +0000 |
commit | ca1e2e17e5ae4af811826518f46631c9962f8292 (patch) | |
tree | 81b9dfb3245fa3b4b1d8c9335daee8565a70ed04 /sysvinit/freebsd/cloudinit | |
parent | c6ca246c3fe44cb21c068ff9fe5fb134c2230ebb (diff) | |
download | vyos-cloud-init-ca1e2e17e5ae4af811826518f46631c9962f8292.tar.gz vyos-cloud-init-ca1e2e17e5ae4af811826518f46631c9962f8292.zip |
fix: The correct path end with an s.
Diffstat (limited to 'sysvinit/freebsd/cloudinit')
-rwxr-xr-x | sysvinit/freebsd/cloudinit | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysvinit/freebsd/cloudinit b/sysvinit/freebsd/cloudinit index 8d5ff10e..23a1247b 100755 --- a/sysvinit/freebsd/cloudinit +++ b/sysvinit/freebsd/cloudinit @@ -18,9 +18,9 @@ start_cmd="cloudinit_start" cloudinit_override() { - # If there exist sysconfig/default variable override files use it... - if [ -f /etc/default/cloud-init ]; then - . /etc/default/cloud-init + # If there exist sysconfig/defaults variable override files use it... + if [ -f /etc/defaults/cloud-init ]; then + . /etc/defaults/cloud-init fi } |