repo.or.cz
/
ArchLinux
/
community.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
archrelease: copy trunk to community-x86_64
[ArchLinux/community.git]
/
linuxconsole
/
trunk
/
inputattachctl
blob
05dfa4af51af305ee2b77b62acf29d3fe997dd17
1
#!/bin/bash
2
3
.
/
etc
/
conf.d
/
inputattach
4
5
case
"
$1
"
in
6
start
)
7
for
i
in
"
${IAPARAMS[@]}
"
;
do
8
/
usr
/
bin
/
inputattach
--daemon
$i
||
exit
1
9
done
10
;;
11
stop
)
12
killall inputattach ||
exit
1
13
;;
14
esac