diff --git a/plugins/pureftp/index.py b/plugins/pureftp/index.py index 1d729c31f..e82704bd6 100755 --- a/plugins/pureftp/index.py +++ b/plugins/pureftp/index.py @@ -177,7 +177,7 @@ def initdInstall(): if mw.isAppleSystem(): return "Apple Computer does not support" - mw.execShell('systemctl start pureftp') + mw.execShell('systemctl enable pureftp') return 'ok' @@ -185,7 +185,7 @@ def initdUinstall(): if mw.isAppleSystem(): return "Apple Computer does not support" - mw.execShell('systemctl stop pureftp') + mw.execShell('systemctl disable pureftp') return 'ok'