diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-01-27 21:11:59 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-01-27 21:11:59 +0100 |
commit | e6678fbfcab1f1e52cf1dbb9975942332b564a02 (patch) | |
tree | 43a96ba910897266a14753d659abfd7961f786d1 | |
parent | 775fd48eafe2bdc98aa00683b4079fa5cc4093e8 (diff) |
Disable the Hurd console on the installed system if installation was done without it.
-rw-r--r-- | debian/changelog | 7 | ||||
-rwxr-xr-x | debian/local/finish-install.d/51hurd_config-console | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 081b0c96..5cc71efa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +hurd (20130105-2) UNRELEASED; urgency=low + + * local/finish-install.d/51hurd_config-console: Disable the Hurd console on + the installed system if installation was done without it. + + -- Samuel Thibault <sthibault@debian.org> Sun, 27 Jan 2013 20:38:39 +0100 + hurd (20130105-1) unstable; urgency=low [ Samuel Thibault ] diff --git a/debian/local/finish-install.d/51hurd_config-console b/debian/local/finish-install.d/51hurd_config-console new file mode 100755 index 00000000..03cc7697 --- /dev/null +++ b/debian/local/finish-install.d/51hurd_config-console @@ -0,0 +1,3 @@ +#!/bin/sh + +[ -f /var/run/hurd-console.pid ] || sed -i -e "s/ENABLE='true'/ENABLE='false'/" /target/etc/default/hurd-console |