blob: f41f0842f132cda7044cc421815c9b8777417f2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require_relative 'rcm/rcm'
desc 'Set up wireguard mesh'
task :wireguard do |t|
rcm do
p option :verbose
conditions do
hostname is :earth
end
file '/etc/wg/wg0.conf' do
content 'the content'
end
end
end
|