* doc: Update 28.1 release notes * doc: generate 28.1 manpages * build: bump to 28.1 * depends: Fix CXXFLAGS on NetBSD * test: generateblocks called by multiple threads * rpc: Extend scope of validation mutex in generateblock * doc: update release notes for 28.1rc2 * examples: Generate example bitcoin.conf * doc: Generate manpages * build: Bump to 28.1rc2 * Add release note for #31223 * test: add functional test for -port behavior * net, init: derive default onion port if a user specified a -port * test: fix MIN macro-redefinition * util: use explicit cast in MultiIntBitSet::Fill() * fuzz: add cstdlib to FuzzedDataProvider * doc: update manual pages for 28.1rc1 * build: bump version to 28.1rc1 * doc: update release notes for 28.1rc1 * build: disable compiling fuzz/utxo_snapshot.cpp with MSVC * refactor: Drop deprecated space in operator""_mst * addrman: change nid_type from int to int64_t * addrman, refactor: introduce user-defined type for internal nId * depends: For mingw cross compile use -gcc-posix to prevent library conflict * key: clear out secret data in `DecodeExtKey` * ci: add LLVM_SYMBOLIZER_PATH to Valgrind fuzz job * test: add missing sync to feature_fee_estimation.py * doc: add testnet4 section header for config file * doc: Archive 28.0 release notes OBS-URL: https://build.opensuse.org/package/show/network:cryptocurrencies/bitcoin?expand=0&rev=74
28 lines
719 B
Desktop File
28 lines
719 B
Desktop File
[Unit]
|
|
Description=Bitcoin Daemon
|
|
Requires=network.target
|
|
After=network.target
|
|
|
|
[Service]
|
|
# added automatically, for details please see
|
|
# https://en.opensuse.org/openSUSE:Security_Features#Systemd_hardening_effort
|
|
ProtectSystem=full
|
|
ProtectHome=true
|
|
PrivateDevices=true
|
|
ProtectHostname=true
|
|
ProtectClock=true
|
|
ProtectKernelTunables=true
|
|
ProtectKernelModules=true
|
|
ProtectKernelLogs=true
|
|
ProtectControlGroups=true
|
|
RestrictRealtime=true
|
|
# end of automatic additions
|
|
User=bitcoin
|
|
PIDFile=/run/bitcoin/bitcoind.pid
|
|
ExecStart=/usr/bin/bitcoind -conf=/etc/bitcoin/bitcoin.conf -pid=/run/bitcoin/bitcoind.pid -datadir=/var/lib/bitcoin
|
|
ExecReload=/bin/kill -HUP $MAINPID
|
|
Restart=on-failure
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|