summaryrefslogtreecommitdiff
blob: fc0239f0daf4db9e2a05c84aa18d39804895469f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/media-gfx/maya/files/aw_flexlm,v 1.5 2005/08/11 08:50:25 eradicator Exp $

# description: aw_flexlm controls the Flexlm License Server Daemon for \
#              Alias|Wavefront Products.
# processname: lmgrd

depend() {
        need net
}

checkconfig() {
	if [[ -x "/opt/aw/COM/etc/lmgrd" ]]; then
		if [[ -f "${LICENSE_FILE}" ]] ; then
			return 0
		else
			eerror "ERROR Cannot run FLEXlm Licensing daemon: lmgrd"
			eerror "${LICENSE_FILE} does not exist."
		fi
	else
		eerror "ERROR Cannot run FLEXlm Licensing daemon: lmgrd"
		eerror "/opt/aw/COM/etc/lmgrd does not exist or is not executable"
	fi

	return 1
}

start() {
	checkconfig || return 1
	ebegin "Starting FLEXlm License Server Daemon for Alias|Wavefront software"
	LD_ASSUME_KERNEL=2.4.1 su nobody -c "/opt/aw/COM/etc/lmgrd -c '${LICENSE_FILE}' -l '${LOG}'"	
        eend $?
}

stop() {
	ebegin "Shutting Down FLEXlm License Server Daemon for Alias|Wavefront software"
	/opt/aw/COM/bin/lmdown -q -c "${LICENSE_FILE}"
        eend $?
}