From 158a20a6424ec7a1023ddca5e7602bb243d1dff9 Mon Sep 17 00:00:00 2001 From: Ossi Salmi Date: Tue, 29 Oct 2013 14:59:04 +0200 Subject: [PATCH] gnu: Added gnu::rcs --- gnu/manifests/init.pp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/gnu/manifests/init.pp b/gnu/manifests/init.pp index b42c569..fd9b539 100644 --- a/gnu/manifests/init.pp +++ b/gnu/manifests/init.pp @@ -51,3 +51,18 @@ class gnu::tar { } } + + +# Install GNU rcs. +# +class gnu::rcs { + + package { "rcs": + ensure => installed, + name => $::operatingsystem ? { + "openbsd" => "grcs", + default => "rcs", + }, + } + +}