summaryrefslogtreecommitdiff
path: root/Rakefile
blob: 5122919ad1d30418ccfef3d3e45cccb680afaaca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require_relative 'lib/rcm'

desc 'Set up wireguard mesh'
task :wireguard do
  make_it_so do
    p option :verbose
    dump_config
    only_when { hostname is :earth }

    file '/etc/wg/wg0.conf' do
      content 'the content'
    end
  end
end