diff options
Diffstat (limited to 'sysvinit/freebsd/cloudinitlocal')
-rwxr-xr-x | sysvinit/freebsd/cloudinitlocal | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysvinit/freebsd/cloudinitlocal b/sysvinit/freebsd/cloudinitlocal index b55705c0..b96d1513 100755 --- a/sysvinit/freebsd/cloudinitlocal +++ b/sysvinit/freebsd/cloudinitlocal @@ -18,9 +18,9 @@ start_cmd="cloudlocal_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 } |