18 lines
194 B
Ruby
18 lines
194 B
Ruby
#
|
|
# Cookbook Name:: ipfs
|
|
# Recipe:: _user
|
|
#
|
|
|
|
group 'ipfs' do
|
|
gid 4737
|
|
end
|
|
|
|
user 'ipfs' do
|
|
comment 'ipfs'
|
|
uid 4737
|
|
gid 4737
|
|
home '/home/ipfs'
|
|
shell '/bin/bash'
|
|
manage_home true
|
|
end
|