This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
DAEMON=/usr/local/sbin/php-fpm | |
OPTS='--fpm-config /usr/local/etc/php5/fpm/php-fpm.conf' | |
NAME='php-fpm' | |
DESC=php-fpm | |
test -x $DAEMON || exit 0 | |
set -e |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
DAEMON=/usr/local/bin/mysqld_safe | |
OPTS=--defaults-file=/usr/local/etc/mysql/my.cnf | |
NAME=mysql | |
DESC=mysql | |
test -x $DAEMON || exit 0 | |
set -e |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import socket | |
import struct | |
import sys | |
import os | |
import os.path | |
import time | |
# see com.intelij.idea.SocketLock for the server side of this interface |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
DAEMON=/usr/local/sbin/nginx | |
NAME=nginx | |
DESC=nginx | |
test -x $DAEMON || exit 0 | |
set -e | |
test_config() { |
NewerOlder