#!/bin/sh set -e case "$1" in configure) if [ -z "$2" ]; then if ! getent group docker >>/dev/null 2>&1 ; then addgroup --quiet --system docker fi fi # Ensure config directory permissions # On a fresh install, $2 = '' and dpkg "le-nl" treat that as a # greater version, so the body is not executed. if dpkg --compare-versions "$2" le-nl '1.11.2~ds1-1'; then if [ "$(stat -c '%a' /etc/docker)" = '700' ]; then chmod 0755 /etc/docker fi fi ;; abort-*) # How'd we get here?? exit 1 ;; *) ;; esac # Automatically added by dh_installdeb/12.1.1 dpkg-maintscript-helper mv_conffile /etc/bash_completion.d/docker.io /etc/bash_completion.d/docker 1.2.0\~ -- "$@" dpkg-maintscript-helper mv_conffile /etc/default/docker.io /etc/default/docker 1.2.0\~ -- "$@" dpkg-maintscript-helper mv_conffile /etc/init.d/docker.io /etc/init.d/docker 1.2.0\~ -- "$@" dpkg-maintscript-helper mv_conffile /etc/init/docker.io.conf /etc/init/docker.conf 1.2.0\~ -- "$@" dpkg-maintscript-helper rm_conffile /etc/bash_completion.d/docker 1.11.2\~ -- "$@" dpkg-maintscript-helper rm_conffile /etc/init/docker.conf 18.06.0\~ -- "$@" # End automatically added section # Automatically added by dh_installinit/12.1.1 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then if [ -x "/etc/init.d/docker" ]; then update-rc.d docker defaults >/dev/null invoke-rc.d docker start || exit 1 fi fi # End automatically added section # Automatically added by dh_installsystemd/12.1.1 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then # This will only remove masks created by d-s-h on package removal. deb-systemd-helper unmask 'docker.service' >/dev/null || true # was-enabled defaults to true, so new installations run enable. if deb-systemd-helper --quiet was-enabled 'docker.service'; then # Enables the unit on first installation, creates new # symlinks on upgrades if the unit file has changed. deb-systemd-helper enable 'docker.service' >/dev/null || true else # Update the statefile to add new symlinks (if any), which need to be # cleaned up on purge. Also remove old symlinks. deb-systemd-helper update-state 'docker.service' >/dev/null || true fi fi # End automatically added section # Automatically added by dh_installsystemd/12.1.1 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then # This will only remove masks created by d-s-h on package removal. deb-systemd-helper unmask 'docker.socket' >/dev/null || true # was-enabled defaults to true, so new installations run enable. if deb-systemd-helper --quiet was-enabled 'docker.socket'; then # Enables the unit on first installation, creates new # symlinks on upgrades if the unit file has changed. deb-systemd-helper enable 'docker.socket' >/dev/null || true else # Update the statefile to add new symlinks (if any), which need to be # cleaned up on purge. Also remove old symlinks. deb-systemd-helper update-state 'docker.socket' >/dev/null || true fi fi # End automatically added section