aboutsummaryrefslogtreecommitdiff
path: root/manifests/utmp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/utmp')
-rw-r--r--manifests/utmp/disable.pp6
-rw-r--r--manifests/utmp/enable.pp8
-rw-r--r--manifests/utmp/protect.pp5
-rw-r--r--manifests/utmp/unprotect.pp8
4 files changed, 13 insertions, 14 deletions
diff --git a/manifests/utmp/disable.pp b/manifests/utmp/disable.pp
deleted file mode 100644
index d01d44b..0000000
--- a/manifests/utmp/disable.pp
+++ /dev/null
@@ -1,6 +0,0 @@
-class loginrecords::utmp::disable inherits loginrecords::utmp::enable {
- File[$utmp_file]{
- ensure => 'absent',
- backup => false,
- }
-}
diff --git a/manifests/utmp/enable.pp b/manifests/utmp/enable.pp
deleted file mode 100644
index 1003182..0000000
--- a/manifests/utmp/enable.pp
+++ /dev/null
@@ -1,8 +0,0 @@
-class loginrecords::utmp::enable(
- $utmp_file = '/var/run/utmp'
-){
- file{$utmp_file:
- ensure => 'present',
- owner => 'root', group => 'utmp', mode => 660;
- }
-}
diff --git a/manifests/utmp/protect.pp b/manifests/utmp/protect.pp
new file mode 100644
index 0000000..166df5e
--- /dev/null
+++ b/manifests/utmp/protect.pp
@@ -0,0 +1,5 @@
+class loginrecords::utmp::protect inherits loginrecords::utmp::unprotect {
+ File[$utmp_file]{
+ mode => 660,
+ }
+}
diff --git a/manifests/utmp/unprotect.pp b/manifests/utmp/unprotect.pp
new file mode 100644
index 0000000..9da7517
--- /dev/null
+++ b/manifests/utmp/unprotect.pp
@@ -0,0 +1,8 @@
+class loginrecords::utmp::unprotect(
+ $utmp_file = '/var/run/utmp'
+){
+ file{$utmp_file:
+ ensure => 'present',
+ owner => 'root', group => 'utmp', mode => 664;
+ }
+}