summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-12-05 16:03:30 +0200
committerPaul Buetow <paul@buetow.org>2024-12-05 16:03:30 +0200
commit56f196bf91dda5178f7e2b8d39114c4c9197d58e (patch)
tree2ad11dca184670d81a3545048682dd6f1f288859 /Rakefile
parent4ad233458c8d289e9ed549c53c158f245bf5088b (diff)
initial rcm playground
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 0000000..1a7ea43
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,13 @@
+require_relative 'rcm/rcm'
+
+task :default do |t|
+ rcm do
+ conditions do
+ hostname is :earth
+ end
+
+ file '/etc/wg/wg0.conf' do
+ content 'the content'
+ end
+ end
+end