Commit cffdf0e3 authored by Mikhail Efremov's avatar Mikhail Efremov Committed by Anton Midyukov

slinux: Disable bell on created rootfs

So it will be disabled by default in live and vm/* images. This make installer-feature-bell-off unneeded on SL-live. See https://bugzilla.altlinux.org/show_bug.cgi?id=33653.
parent c18155e6
#!/bin/sh -efu
cat >>"/etc/inputrc" <<EOF
# do not bell on tab-completion
set bell-style none
EOF
if [ -d /etc/X11/xinit.d ]; then
cat >/etc/X11/xinit.d/disable-bell <<EOF
#!/bin/sh
# Generated by script during image creation
# Disable bell.
xset -b
EOF
chmod +x "/etc/X11/xinit.d/disable-bell" ||:
fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment