aboutsummaryrefslogtreecommitdiff
path: root/contrib/debian/bitcoind.service
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2018-05-01 17:03:49 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2018-05-01 17:05:06 +0200
commit1408d6cf768cc3c88e9ab9efe98b0cb52ae3b537 (patch)
tree5c3728ace4796ff319e4b8be179bebe10dc98143 /contrib/debian/bitcoind.service
parent35eb9d6c880ec4dd732b9cb4443f84cec2c2cd4e (diff)
Revert #12769: Add systemd service to bitcoind in debian package
After discussion with Matt on IRC, this is not ready for prime time until 2019 and shouldn't have been ACKed and merged. - Revert "Add systemd service for bitcoind" This reverts commit 2a87b1b07c5c4f8b9b34747c5f254c2ae1e824bf. - Revert "Sync contrib/debian from Matt Corallo's PPA" This reverts commit 9085532d35207c4a7690812ae82e476cf518d451. Tree-SHA512: 439f4ccc3e196011af448b220adf26b0e653ac589bf4cfbbc276c1500c9d08f209c9d6101e4d232857779d9f25164cfb222ed30e3d63de116f9121e6ebde31c3
Diffstat (limited to 'contrib/debian/bitcoind.service')
-rw-r--r--contrib/debian/bitcoind.service45
1 files changed, 0 insertions, 45 deletions
diff --git a/contrib/debian/bitcoind.service b/contrib/debian/bitcoind.service
deleted file mode 100644
index 26c771f256..0000000000
--- a/contrib/debian/bitcoind.service
+++ /dev/null
@@ -1,45 +0,0 @@
-# It is not recommended to modify this file in-place, because it will
-# be overwritten during package upgrades. If you want to add further
-# options or overwrite existing ones then use
-# $ systemctl edit bitcoind.service
-# See "man systemd.service" for details.
-
-# Note that almost all daemon options could be specified in
-# /etc/bitcoin/bitcoin.conf
-
-[Unit]
-Description=Bitcoin daemon
-After=network.target
-
-[Service]
-ExecStart=/usr/bin/bitcoind -daemon -datadir=/var/lib/bitcoin -conf=/etc/bitcoin/bitcoin.conf -pid=/run/bitcoind/bitcoind.pid
-# Creates /run/bitcoind owned by bitcoin
-RuntimeDirectory=bitcoind
-User=bitcoin
-Type=forking
-PIDFile=/run/bitcoind/bitcoind.pid
-Restart=on-failure
-
-# Hardening measures
-####################
-
-# Provide a private /tmp and /var/tmp.
-PrivateTmp=true
-
-# Mount /usr, /boot/ and /etc read-only for the process.
-ProtectSystem=full
-
-# Disallow the process and all of its children to gain
-# new privileges through execve().
-NoNewPrivileges=true
-
-# Use a new /dev namespace only populated with API pseudo devices
-# such as /dev/null, /dev/zero and /dev/random.
-PrivateDevices=true
-
-# Deny the creation of writable and executable memory mappings.
-# Commented out as it's not supported on Debian 8 or Ubuntu 16.04 LTS
-#MemoryDenyWriteExecute=true
-
-[Install]
-WantedBy=multi-user.target