]> git.pld-linux.org Git - packages/postgresql.git/commitdiff
- obsolete files
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Sun, 5 Jul 2009 13:33:01 +0000 (13:33 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    pgaccess.desktop -> 1.9
    slony1.init -> 1.3
    slony1.pgpass -> 1.2
    slony1.sysconfig -> 1.3

pgaccess.desktop [deleted file]
slony1.init [deleted file]
slony1.pgpass [deleted file]
slony1.sysconfig [deleted file]

diff --git a/pgaccess.desktop b/pgaccess.desktop
deleted file mode 100644 (file)
index 893d200..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-[Desktop Entry]
-Name=PostgreSQL Access
-Comment=PostgreSQL Tcl/Tk front-end
-Comment[pl]=Nakładka na PostgreSQL w Tcl/Tk
-Exec=pgaccess
-Icon=pgaccess
-Terminal=false
-Type=Application
-Categories=Office;Database;
-# vi: encoding=utf-8
diff --git a/slony1.init b/slony1.init
deleted file mode 100644 (file)
index 1e4b0f4..0000000
+++ /dev/null
@@ -1,81 +0,0 @@
-#!/bin/sh
-#
-# slony1      This shell script starts and stops Slony-I processes.
-#
-# chkconfig:   2345 80 30
-# description: Slony-I is a replication daemon for PostgreSQL databases.
-# processname: slon
-# pidfile:  /var/run/slony1.pid
-
-# Source function library.
-. /etc/rc.d/init.d/functions
-
-# Source networking configuration.
-. /etc/sysconfig/network
-
-# Source slony1 configureation.
-. /etc/sysconfig/slony1
-
-# Check that networking is up.
-if is_yes "${NETWORKING}"; then
-   if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then
-      msg_network_down Slony-I
-      exit 1
-   fi
-else
-   exit 0
-fi
-
-RETVAL=0
-# See how we were called.
-case "$1" in
-  start)
-   # Start daemons.
-   if [ ! -f /var/lock/subsys/slony1 ]; then
-                       for CLUSTER in $SLONY1_CLUSTERS; do
-                               msg_starting "Slony-I ($CLUSTER)"
-                               CONNSTRING=`eval echo '$SLONY1_CONNECT'_$CLUSTER`
-                               su - slony1 -c "setsid /sbin/initlog -c \"slon $CLUSTER '$CONNSTRING'\" &" >/dev/null 2>&1
-                               ok
-                       done
-      RETVAL=$?
-      [ $RETVAL -eq 0 ] && touch /var/lock/subsys/slony1
-   else
-      msg_already_running "Slony-I"
-   fi
-   ;;
-  stop)
-   # Stop daemons.
-   if [ -f /var/lock/subsys/slony1 ]; then
-      msg_stopping "Slony-I"
-      killproc slon
-      rm -f /var/lock/subsys/slony1 >/dev/null 2>&1
-   else
-      msg_not_running "Slony-I"
-   fi
-   ;;
-  restart)
-   $0 stop
-   $0 start
-   exit $?
-   ;;
-  status)
-   status slony1
-   exit $?
-   ;;
-  reload|force-reload)
-   if [ -f /var/lock/subsys/slony1 ]; then
-      msg_reloading "Slony-I"
-      killproc slon -HUP
-      RETVAL=$?
-   else
-      msg_not_running "Slony-I" >&2
-      exit 7
-   fi
-   ;;
-  *)
-   msg_usage "$0 {start|stop|restart|reload|force-reload|status}"
-   exit 3
-esac
-
-exit $RETVAL
diff --git a/slony1.pgpass b/slony1.pgpass
deleted file mode 100644 (file)
index a641bbd..0000000
+++ /dev/null
@@ -1 +0,0 @@
-#hostname:port:databasename:username:password
diff --git a/slony1.sysconfig b/slony1.sysconfig
deleted file mode 100644 (file)
index 6f7497c..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-# List each cluster name you want to replicate
-# SLONY1_CLUSTERS='mycluster'
-#
-# More complex:
-# SLONY1_CLUSTERS='mycluster1 mycluster2'
-
-# Set the connect string for each cluster
-# SLONY1_CONNECT_mycluster1='dbname=repltest user=repltest'
-
-# Set passwords in /var/lib/slony1/.pgpass
This page took 0.178985 seconds and 4 git commands to generate.