src.nth.io/

summaryrefslogtreecommitdiff
path: root/btcd/templates
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2020-05-12 19:47:57 -0500
committerLuke Hoersten <[email protected]>2020-05-12 19:47:57 -0500
commit20f74df71e4223591d5a26010df575c99ad3dc43 (patch)
tree531e4a2f0594ed17023f0f430c3c8a0bc66fb293 /btcd/templates
parente15954d16ab8fa98faae42afd828dd2a55324ba7 (diff)
Removed btcd role and combined lnd role.
Diffstat (limited to 'btcd/templates')
-rw-r--r--btcd/templates/btcd.conf.j215
-rw-r--r--btcd/templates/btcd.service.j217
2 files changed, 0 insertions, 32 deletions
diff --git a/btcd/templates/btcd.conf.j2 b/btcd/templates/btcd.conf.j2
deleted file mode 100644
index 34aedb2..0000000
--- a/btcd/templates/btcd.conf.j2
+++ /dev/null
@@ -1,15 +0,0 @@
-[Application Options]
-externalip={{node_external_ip}}
-uacomment={{btcd_comment}}
-
-datadir={{btcd_data_dir}}
-logdir={{btcd_log_dir}}
-debuglevel=error
-
-rpcuser={{btcd_rpc_user}}
-rpcpass={{btcd_rpc_pass}}
-
-txindex={{btcd_enable_txindex}}
-
-{% for peer in btcd_add_peer %}addpeer={{peer}}
-{% endfor %}
diff --git a/btcd/templates/btcd.service.j2 b/btcd/templates/btcd.service.j2
deleted file mode 100644
index 06f8236..0000000
--- a/btcd/templates/btcd.service.j2
+++ /dev/null
@@ -1,17 +0,0 @@
-[Unit]
-Description=btcd
-After=network.target
-
-[Service]
-ExecStart=/usr/local/bin/btcd
-User={{btcd_user}}
-Restart=on-failure
-
-PrivateTmp=true
-ProtectSystem=full
-NoNewPrivileges=true
-PrivateDevices=true
-MemoryDenyWriteExecute=true
-
-[Install]
-WantedBy=multi-user.target