summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
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