summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-12-07 14:36:21 +0200
committerPaul Buetow <paul@buetow.org>2024-12-07 14:36:21 +0200
commitf0b0dae5bb2e16cf45223fc31396708bd069d06c (patch)
tree5a7f3cd159c8d7029006fb900ec79dad05e0e212 /Rakefile
parent7d5264aea075c3845e6d5e4be65aaacdea54e71f (diff)
cosmetics
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