mirror of
				https://github.com/SuperBFG7/ympd
				synced 2025-11-03 23:33:00 +00:00 
			
		
		
		
	Merge pull request #73 from jpleau/fix_init
fix webport using the wrong variable in init scripts
This commit is contained in:
		@@ -35,7 +35,7 @@ WEB_PORT=8080
 | 
				
			|||||||
# Load the VERBOSE setting and other rcS variables
 | 
					# Load the VERBOSE setting and other rcS variables
 | 
				
			||||||
[ -f /etc/default/rcS ] && . /etc/default/rcS
 | 
					[ -f /etc/default/rcS ] && . /etc/default/rcS
 | 
				
			||||||
 | 
					
 | 
				
			||||||
DAEMON_OPT="--user $YMPD_USER --webport $MPD_WEBHOST --host $MPD_HOST --port $MPD_PORT"
 | 
					DAEMON_OPT="--user $YMPD_USER --webport $WEB_PORT --host $MPD_HOST --port $MPD_PORT"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
do_start()
 | 
					do_start()
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -8,7 +8,7 @@ Environment=MPD_PORT=6600
 | 
				
			|||||||
Environment=WEB_PORT=8080
 | 
					Environment=WEB_PORT=8080
 | 
				
			||||||
Environment=YMPD_USER=nobody
 | 
					Environment=YMPD_USER=nobody
 | 
				
			||||||
EnvironmentFile=/etc/default/ympd
 | 
					EnvironmentFile=/etc/default/ympd
 | 
				
			||||||
ExecStart=/usr/bin/ympd --user $YMPD_USER --webport $MPD_WEBHOST --host $MPD_HOST --port $MPD_PORT
 | 
					ExecStart=/usr/bin/ympd --user $YMPD_USER --webport $WEB_PORT --host $MPD_HOST --port $MPD_PORT
 | 
				
			||||||
Type=simple
 | 
					Type=simple
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[Install]
 | 
					[Install]
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user