summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaichi Shinozaki2016-04-22 14:13:28 +0000
committerDaichi Shinozaki2016-04-22 14:13:28 +0000
commit064a548e6157e4c4c1d6e257e21569f8830d3c02 (patch)
tree6c93e17d6ebabf6feb6ed28320f34be345935dd4
parent19bef3e46148be46ca819a10a8753a8d83ed6a9f (diff)
downloadaur-064a548e6157e4c4c1d6e257e21569f8830d3c02.tar.gz
Remove an backup file.
-rw-r--r--pipelinedb.service~34
1 files changed, 0 insertions, 34 deletions
diff --git a/pipelinedb.service~ b/pipelinedb.service~
deleted file mode 100644
index a2308ed494c1..000000000000
--- a/pipelinedb.service~
+++ /dev/null
@@ -1,34 +0,0 @@
-[Unit]
-Description=PostgreSQL database server
-After=network.target
-
-[Service]
-Type=forking
-TimeoutSec=120
-User=postgres
-Group=postgres
-
-Environment=PGROOT=/var/lib/pipelinedb
-
-SyslogIdentifier=pipelinedb
-PIDFile=/var/lib/pipelinedb/data/postmaster.pid
-RuntimeDirectory=pipelinedb
-RuntimeDirectoryMode=755
-
-ExecStartPre=/usr/bin/postgresql-check-db-dir ${PGROOT}/data
-ExecStart= /usr/bin/pg_ctl -s -D ${PGROOT}/data start -w -t 120
-ExecReload=/usr/bin/pg_ctl -s -D ${PGROOT}/data reload
-ExecStop= /usr/bin/pg_ctl -s -D ${PGROOT}/data stop -m fast
-
-# Due to PostgreSQL's use of shared memory, OOM killer is often overzealous in
-# killing Postgres, so adjust it downward
-OOMScoreAdjust=-200
-
-# Additional security-related features
-PrivateTmp=true
-ProtectHome=true
-ProtectSystem=full
-NoNewPrivileges=true
-
-[Install]
-WantedBy=multi-user.target