mirror of
				https://github.com/osmarks/ngircd.git
				synced 2025-10-31 14:02:59 +00:00 
			
		
		
		
	Test suite: Use $USER in getpid.sh when $LOGNAME is not set
The LOGNAME environment variable is not set in GitHub "actions", for example ...
This commit is contained in:
		| @@ -23,7 +23,7 @@ if [ -x /usr/bin/pgrep ]; then | ||||
| 		*) | ||||
| 			PGREP_FLAGS="" | ||||
| 	esac | ||||
| 	exec /usr/bin/pgrep $PGREP_FLAGS -n -u "$LOGNAME" "$1" | ||||
| 	exec /usr/bin/pgrep $PGREP_FLAGS -n -u "${LOGNAME:-$USER}" "$1" | ||||
| fi | ||||
|  | ||||
| # pidof(1) could be a good alternative on elder Linux systems | ||||
|   | ||||
| @@ -20,7 +20,7 @@ echo_n "starting server ${id} ..." | ||||
|  | ||||
| # check weather getpid.sh returns valid PIDs. If not, don't start up the | ||||
| # test-server, because we won't be able to kill it at the end of the test. | ||||
| ./getpid.sh sh >/dev/null 2>&1 | ||||
| ./getpid.sh sh >/dev/null | ||||
| if [ $? -ne 0 ]; then | ||||
| 	echo " getpid.sh failed!" | ||||
| 	exit 1 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Alexander Barton
					Alexander Barton