summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Rakefile b/Rakefile
index 8dff868..acb3c15 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,8 +1,8 @@
-require_relative 'lib/rcm'
+require_relative 'lib/dsl'
desc 'Set up wireguard mesh'
task :wireguard do
- make_it_so do
+ configure do
# p option :verbose
# dump_config
only_when { hostname is :earth }
@@ -23,9 +23,9 @@ end
desc 'foo task'
task :foo do
- make_it_so do
+ configure do
file '/tmp/test.txt' do
[ 'foo', 'bar', 'baz' ].sort
end
end
-end
+end