Move block data files to CIFS share

This is the vast majority of disk space used on the host currently.
This commit is contained in:
Râu Cao
2022-10-26 15:46:29 +02:00
parent 458558fb26
commit 756382ec9f
6 changed files with 104 additions and 14 deletions

View File

@@ -0,0 +1,18 @@
#
# Cookbook:: kosmos-bitcoin
# Recipe:: user
#
include_recipe 'kosmos-bitcoin::user'
bitcoin_user = node['bitcoin']['username']
bitcoin_group = node['bitcoin']['usergroup']
group bitcoin_group
user bitcoin_user do
manage_home true
uid 1006
gid bitcoin_group
shell "/bin/bash"
end