mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
21 lines
232 B
Text
21 lines
232 B
Text
|
#!/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#
|