Zutil changes

This commit is contained in:
Ziver Koc 2016-09-11 21:56:08 +02:00
parent 2b1db8f9f2
commit b683d236e0

View file

@ -47,12 +47,12 @@ public class ApacheStatus extends WAServiceStatus {
@Override
public void start() {
os.runCommand("service apache2 start");
os.exec("service apache2 start");
}
@Override
public void stop() {
os.runCommand("service apache2 stop");
os.exec("service apache2 stop");
}
@Override