Skip to content

Commit

Permalink
changing from services to systemctl (issue #138)
Browse files Browse the repository at this point in the history
  • Loading branch information
ekultek committed Jun 8, 2018
1 parent 75d4e50 commit b998ad8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions etc/scripts/start_services.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/bin/bash

function startApacheLinux () {
sudo service apache2 start > /dev/null 2>&1
sudo systemctl start apache2 > /dev/null 2>&1
}

function startPostgreSQLLinux () {
sudo service postgresql start > /dev/null 2>&1
sudo systemctl start postgresql > /dev/null 2>&1
}

function startApacheOSX () {
Expand Down

0 comments on commit b998ad8

Please sign in to comment.