#!/bin/sh #---------------------------------------------------------------------------- # /var/install/bin/postgresql-tools-pgadmin_remote - start PostgreSQL Administrator # # Copyright (c) 2007 Daniel Vogel # # Creation: 2007-02-18 dv # Last Update: $Id$ # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. #---------------------------------------------------------------------------- . /var/install/include/eislib . /etc/config.d/setup PROGNAME="/var/install/bin/pg_admin.cui" PROGARGS="--host=localhost" if [ "$MENU" != "/var/install/bin/show-menu.cui" ] then PROGARGS="$PROGARGS --nocolor" fi $PROGNAME $PROGARGS exit 0