mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-10-31 08:21:49 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			353 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			353 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
| #!/sbin/runscript
 | |
| 
 | |
| NAME="lldpd"
 | |
| DAEMON="/usr/sbin/$NAME"
 | |
| pidfile=/var/run/$NAME.pid
 | |
| 
 | |
| depend() {
 | |
| 	need net
 | |
| 	after firewall
 | |
| }
 | |
| 
 | |
| start() {
 | |
| 	ebegin "Starting ${NAME}"
 | |
| 	start-stop-daemon --start --quiet --pidfile ${pidfile} \
 | |
| 		--exec ${DAEMON} -- ${OPTS}
 | |
| 	eend $?
 | |
| }
 | |
| 
 | |
| stop() {
 | |
| 	ebegin "Stopping ${NAME}"
 | |
| 	start-stop-daemon --stop --exec ${DAEMON}
 | |
| 	eend $?
 | |
| }
 | |
| 
 |