|
|
|
@ -146,7 +146,7 @@ def initdStatus(): |
|
|
|
|
return "Apple Computer does not support" |
|
|
|
|
|
|
|
|
|
data = public.execShell('systemctl status rsyncd.service | grep enabled') |
|
|
|
|
if data[1] == '': |
|
|
|
|
if data[0] == '': |
|
|
|
|
return 'ok' |
|
|
|
|
return 'fail' |
|
|
|
|
|
|
|
|
@ -155,7 +155,7 @@ def initdInstall(): |
|
|
|
|
if public.isAppleSystem(): |
|
|
|
|
return "Apple Computer does not support" |
|
|
|
|
data = public.execShell('systemctl enable rsyncd.service') |
|
|
|
|
if data[1] == '': |
|
|
|
|
if data[0] == '': |
|
|
|
|
return 'ok' |
|
|
|
|
return 'fail' |
|
|
|
|
|
|
|
|
@ -164,7 +164,7 @@ def initdUinstall(): |
|
|
|
|
if public.isAppleSystem(): |
|
|
|
|
return "Apple Computer does not support" |
|
|
|
|
data = public.execShell('systemctl disable rsyncd.service') |
|
|
|
|
if data[1] == '': |
|
|
|
|
if data[0] == '': |
|
|
|
|
return 'ok' |
|
|
|
|
return 'fail' |
|
|
|
|
|
|
|
|
|