forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
13 lines
168 B
Bash
13 lines
168 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
|
|
DEST=pgsql@$1
|
|
|
|
logger="logger -t pgpool -p local0.info"
|
|
|
|
/bin/sh <<EOF | ${logger} 2>&1
|
|
|
|
ssh $DEST '/usr/local/etc/rc.d/postgresql start'
|
|
|
|
EOF
|