From 9ca61d8b3e9c8d615c34902a0265d5859bf2126f Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Thu, 15 Mar 2018 21:33:41 +0100 Subject: [PATCH] add service action to sync users and groups for https://github.com/opnsense/core/issues/2151 --- src/etc/inc/plugins.inc.d/login.inc | 44 +++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 src/etc/inc/plugins.inc.d/login.inc diff --git a/src/etc/inc/plugins.inc.d/login.inc b/src/etc/inc/plugins.inc.d/login.inc new file mode 100644 index 000000000..c8b080b25 --- /dev/null +++ b/src/etc/inc/plugins.inc.d/login.inc @@ -0,0 +1,44 @@ + gettext('login (sync users and groups)'), + 'php' => array( + "restart" => array('system_login_configure') + ), + 'nocheck' => true, + 'name' => 'login', + ); + + return $services; +}