From 9cbc0aa5afee7ea08864e30e7506232e2f69fba9 Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Thu, 24 Oct 2019 10:22:18 +0200 Subject: [PATCH] HASync, oops, needed an array. also for https://github.com/opnsense/core/issues/3779 --- src/etc/inc/plugins.inc.d/pf.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/etc/inc/plugins.inc.d/pf.inc b/src/etc/inc/plugins.inc.d/pf.inc index d671bf91f..83fbbbe84 100644 --- a/src/etc/inc/plugins.inc.d/pf.inc +++ b/src/etc/inc/plugins.inc.d/pf.inc @@ -46,8 +46,8 @@ function pf_services() 'description' => gettext('Interface groups'), 'nocheck' => true, 'php' => array( - 'start' => 'interfaces_group_setup', - 'restart' => 'interfaces_group_setup', + 'start' => array('interfaces_group_setup'), + 'restart' => array('interfaces_group_setup'), ), 'name' => 'ifgroups', );