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

This commit is contained in:
Daniel Mizyrycki 2013-09-16 11:23:58 -07:00
Родитель 2183644578
Коммит dfd0deefbb
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

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