summaryrefslogtreecommitdiff
path: root/community/docker/docker.install
diff options
context:
space:
mode:
Diffstat (limited to 'community/docker/docker.install')
-rw-r--r--community/docker/docker.install11
1 files changed, 0 insertions, 11 deletions
diff --git a/community/docker/docker.install b/community/docker/docker.install
index f75fd94aa..f730503de 100644
--- a/community/docker/docker.install
+++ b/community/docker/docker.install
@@ -8,7 +8,6 @@ post_install() {
# arg 2: the old package version
post_upgrade() {
(( $(vercmp $2 '1:0.7.1-1') < 0 )) && post_install "$1" || true
- (( $(vercmp $2 '1:1.1.1-2') < 0 )) && socketactivation || true
}
# arg 1: the old package version
@@ -16,14 +15,4 @@ post_remove() {
groupdel docker >/dev/null 2>&1 || true
}
-socketactivation() {
- if systemctl -q is-enabled docker; then
- cat << EOF
-The docker service switched to socket activation.
-We will enable the socket file for you. Don't need to thanks us.
-EOF
- systemctl enable docker.socket
- fi
-}
-
# vim:set ts=2 sw=2 et: