blob: ab9709ace460e37c50114d212a56e4b9a4d6f50a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.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 || \
amixer sset 'Beep' 100 unmute
|