From 803d7644ba2dd2bd6f1fa0a1aaec8408cc14f1fa Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Fri, 13 Mar 2020 14:16:08 -0700 Subject: [PATCH 1/2] Restart and enable docker.service instead of just docker --- share/enable_docker_service.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/enable_docker_service.sh b/share/enable_docker_service.sh index 8ce851f..3e394f9 100755 --- a/share/enable_docker_service.sh +++ b/share/enable_docker_service.sh @@ -1,3 +1,3 @@ #!/bin/sh -/usr/bin/systemctl restart docker -/usr/bin/systemctl enable docker \ No newline at end of file +/usr/bin/systemctl restart docker.service +/usr/bin/systemctl enable docker.service \ No newline at end of file From c7901757172cfb6dbb7703f558d4344960db8cd9 Mon Sep 17 00:00:00 2001 From: Fidel Ramos Date: Mon, 16 Mar 2020 12:58:38 +0100 Subject: [PATCH 2/2] Allow dependency on docker-ce package This allows dangerzone to be installed by users who install Docker through the docker.com repositories. --- stdeb.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdeb.cfg b/stdeb.cfg index ac83fd5..b667571 100644 --- a/stdeb.cfg +++ b/stdeb.cfg @@ -1,6 +1,6 @@ [DEFAULT] Package3: dangerzone -Depends3: docker.io, python3, python3-pyqt5, python3-appdirs, python3-click, python3-xdg, python3-requests +Depends3: docker.io | docker-ce, python3, python3-pyqt5, python3-appdirs, python3-click, python3-xdg, python3-requests Build-Depends: python3, python3-all Suite: bionic X-Python3-Version: >= 3.7 \ No newline at end of file