0f75b2635e
'echo -n' is not a POSIX construct (no flag support), we shoud use 'printf', especially in init script. This patch was generated by the following command line: git grep -l 'echo -n' -- `git ls-files | grep -v 'patch'` | xargs sed -i 's/echo -n/printf/' Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
45 lines
642 B
Bash
45 lines
642 B
Bash
#!/bin/sh
|
|
#
|
|
# start postgresql
|
|
#
|
|
|
|
umask 077
|
|
|
|
if [ ! -f /var/lib/pgsql/PG_VERSION ]; then
|
|
echo "Initializing postgresql data base..."
|
|
su - postgres -c '/usr/bin/pg_ctl initdb -D /var/lib/pgsql'
|
|
echo "done"
|
|
fi
|
|
|
|
start() {
|
|
printf "Starting postgresql: "
|
|
su - postgres -c '/usr/bin/pg_ctl start -w -D /var/lib/pgsql -l logfile'
|
|
echo "OK"
|
|
}
|
|
stop() {
|
|
printf "Stopping postgresql: "
|
|
su - postgres -c '/usr/bin/pg_ctl stop -D /var/lib/pgsql -m fast'
|
|
echo "OK"
|
|
}
|
|
restart() {
|
|
stop
|
|
start
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
restart|reload)
|
|
restart
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart}"
|
|
exit 1
|
|
esac
|
|
|
|
exit $?
|