blob: 1eca7b0c2c88722e5362e400c8ee1fdd2fae21b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.PHONY: all
all: select-target
.PHONY: infest
infest:
apt-get install --yes expect beep alsa-utils ucspi-tcp espeak
f=/usr/bin/beep; chown krebs:krebs $$f && chmod 4755 $$f
getent passwd noise || useradd noise
ln -vsnf /krebs/modules/noise/init.d/noise /etc/init.d/noise
update-rc.d -f noise defaults
##
amixer sset 'Master' 100 unmute
amixer sset 'PCM' 100 unmute
amixer sset 'PC Speaker' 100 unmute
|