packaging, issue #1647: Add docker groupname on the package release

Upstream-commit: dfd0deefbb5325901608c85319dd357146d5370a
Component: engine
This commit is contained in:
Daniel Mizyrycki
2013-09-16 11:23:58 -07:00
parent c55e3c6610
commit 588e45b7bc

View File

@ -51,11 +51,13 @@ bundle_ubuntu() {
cat >/tmp/postinstall <<EOF
#!/bin/sh
/sbin/stop docker || true
/bin/grep -q "^docker:" /etc/group || /usr/sbin/addgroup --system docker || true
/sbin/start docker
EOF
cat >/tmp/prerm <<EOF
#!/bin/sh
/sbin/stop docker || true
/usr/sbin/delgroup docker || true
EOF
chmod +x /tmp/postinstall /tmp/prerm