mirror of
				https://github.com/moby/moby.git
				synced 2022-11-09 12:21:53 -05:00 
			
		
		
		
	This fixes the part of #12996 that I forgot. 👼 This also fixes a minor path issue (there's no `libexec` in Debian), and fixes a minor bug with the `debVersion` parsing. Signed-off-by: Andrew "Tianon" Page <admwiggin@gmail.com>
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			232 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			232 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
set -e
 | 
						|
 | 
						|
case "$1" in
 | 
						|
	configure)
 | 
						|
		if [ -z "$2" ]; then
 | 
						|
			if ! getent group docker > /dev/null; then
 | 
						|
				groupadd --system docker
 | 
						|
			fi
 | 
						|
		fi
 | 
						|
		;;
 | 
						|
	abort-*)
 | 
						|
		# How'd we get here??
 | 
						|
		exit 1
 | 
						|
		;;
 | 
						|
	*)
 | 
						|
		;;
 | 
						|
esac
 | 
						|
 | 
						|
#DEBHELPER#
 |