blob: 6017e5f1946db0fd7c42c5c20088d0ed459b03e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/sbin/runscript
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
start() {
return 0
}
stop() {
return 0
}
# vim:ts=4
|