summaryrefslogtreecommitdiffstats
path: root/libpostgresql/nutyx-01.patch
diff options
context:
space:
mode:
Diffstat (limited to 'libpostgresql/nutyx-01.patch')
-rw-r--r--libpostgresql/nutyx-01.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/libpostgresql/nutyx-01.patch b/libpostgresql/nutyx-01.patch
deleted file mode 100644
index a1b1585d9..000000000
--- a/libpostgresql/nutyx-01.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- blfs-bootscripts-20090302/blfs/init.d/postgresql.original 2010-01-20 20:34:28.000000000 +0000
-+++ blfs-bootscripts-20090302/blfs/init.d/postgresql 2010-01-20 20:37:49.000000000 +0000
-@@ -10,6 +10,18 @@
- . /etc/sysconfig/rc
- . $rc_functions
-
-+newgroup=postgres
-+newuser=postgres
-+newid=40
-+
-+# check for mysql group or add one
-+getent group $newgroup > /dev/null || /usr/sbin/groupadd -g $newid $newgroup
-+
-+# check for mysql user or add one
-+getent passwd $newuser > /dev/null || /usr/sbin/useradd -g $newgroup \
-+-u $newid -d /dev/null \
-+-s /bin/false -c "PostgreSQL Server" $newuser
-+
- case "$1" in
- start)
- boot_mesg "Starting PostgreSQL daemon..."