diff --git a/plinth/modules/samba/__init__.py b/plinth/modules/samba/__init__.py index ca8b25f9b..5c1636855 100644 --- a/plinth/modules/samba/__init__.py +++ b/plinth/modules/samba/__init__.py @@ -28,7 +28,7 @@ from plinth import action_utils, actions from plinth import app as app_module from plinth import frontpage, menu from plinth.daemon import Daemon -from plinth.modules.users import register_group +from plinth.modules.users import create_group, register_group from plinth.modules.firewall.components import Firewall from plinth.utils import format_lazy @@ -104,6 +104,7 @@ def init(): def setup(helper, old_version=None): """Install and configure the module.""" helper.install(managed_packages) + create_group('freedombox-share') helper.call('post', actions.superuser_run, 'samba', ['setup']) helper.call('post', app.enable)