diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-10-14 16:49:42 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-10-14 16:49:42 -0700 |
commit | 4f57670b420b779484659a013e67d17976f99723 (patch) | |
tree | 10f9aefa75a954f0fed7a52f50a86a1637897cc9 /debian/vyatta-cfg-system.postinst.in | |
parent | 1da0095f4155100887a98638f3a9d78ff94b82c0 (diff) | |
download | vyatta-cfg-system-4f57670b420b779484659a013e67d17976f99723.tar.gz vyatta-cfg-system-4f57670b420b779484659a013e67d17976f99723.zip |
Add better control over console screen blanker
By default, turn console screenblanking off.
If user wants to enable it, they can use:
set system console powersave
Diffstat (limited to 'debian/vyatta-cfg-system.postinst.in')
-rw-r--r-- | debian/vyatta-cfg-system.postinst.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index 8d288e75..0d2c29e5 100644 --- a/debian/vyatta-cfg-system.postinst.in +++ b/debian/vyatta-cfg-system.postinst.in @@ -25,6 +25,13 @@ if ! grep -q '^tss' /etc/passwd; then adduser --system --group --shell /usr/sbin/nologin --home /var/lib/tpm tss fi +# Force screenblanker to be off, it can be enabled later if desired +if [ -f /etc/console-tools/config ]; then + sed -i -e '/^POWERDOWN/s/=.*$/=0/' \ + -e '/^BLANK_TIME/s/=.*$/=0/' \ + -e '/^BLANK_DPMS/s/=.*$/=off/' /etc/console-tools/config +fi + if [ "$sysconfdir" != "/etc" ]; then touch /etc/sudoers cp -p /etc/sudoers /etc/sudoers.bak |