Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/core/src/core_logic/ServiceManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ def is_service_enabled(self):
# endregion

# region - Service Unit Management
def create_service_unit_file(self, exec_start, desc, after="network.target", service_type="notify", wanted_by="multi-user.target"):
def create_service_unit_file(self, exec_start, desc, after="network.target", service_type="forking", wanted_by="multi-user.target"):
""" Note: Service type defaults to forking because of sh to py process fork """
service_unit_content_template = "\n[Unit]" + \
"\nDescription={0}" + \
"\nAfter={1}\n" + \
Expand Down