aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README4
-rw-r--r--manifests/debian.pp5
2 files changed, 8 insertions, 1 deletions
diff --git a/README b/README
index 68cf39b..8395501 100644
--- a/README
+++ b/README
@@ -12,6 +12,7 @@ Dependencies
============
- the common module: git://labs.riseup.net/shared-common
+- the lsb module: git://labs.riseup.net/shared-lsb
Configuration
=============
@@ -54,6 +55,9 @@ Default: have the initscripts mount a ramdisk on /var/run.
When set to a false, non-empty value, the mounting of a ramdisk on
/var/run is disabled.
+This has no effect on Debian Wheezy or later: a ramdisk is always
+mounted on /run, regardless of this setting.
+
Please note that the changes only take effect on reboot. When enabling
this feature, you probably want to get rid of any file previously
stored on the files (such as utmp) stored in the non-ramdisk
diff --git a/manifests/debian.pp b/manifests/debian.pp
index e68185b..c20be6c 100644
--- a/manifests/debian.pp
+++ b/manifests/debian.pp
@@ -33,7 +33,10 @@ class loginrecords::debian inherits loginrecords::base {
if $loginrecords::ramdisk_on_var_run {
class{'loginrecords::ramrun::enable': }
} else {
- class{'loginrecords::ramrun::disable': }
+ case $lsbdistrelease {
+ 'lenny','squeeze': { class{'loginrecords::ramrun::disable': } }
+ default: { err("Disabling RAMRUN is not supported since Wheezy") }
+ }
}
}