Skip to content
This repository has been archived by the owner on Jul 16, 2020. It is now read-only.

Commit

Permalink
ciao-launcher: Fix docker dependency in ubuntu
Browse files Browse the repository at this point in the history
The 'docker' package is being installed as a dependency to
get docker insalled in Ubuntu, however, the package needed
is 'docker-engine'

From apt-cache search docker
docker - System tray for KDE3/GNOME2 docklet applications
docker-engine - Docker: the open-source application container engine

Fixes #508

Signed-off-by: Alberto Murillo <[email protected]>
  • Loading branch information
Alberto Murillo committed Sep 9, 2016
1 parent 4e2cb0c commit 2bfc5be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ciao-launcher/deps.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@ var launcherComputeNodeDeps = map[string][]osprepare.PackageRequirement{
"fedora": append(launcherFedoraCommonDeps,
osprepare.PackageRequirement{BinaryName: "/usr/bin/docker", PackageName: "docker-engine"}),
"ubuntu": append(launcherUbuntuCommonDeps,
osprepare.PackageRequirement{BinaryName: "/usr/bin/docker", PackageName: "docker"}),
osprepare.PackageRequirement{BinaryName: "/usr/bin/docker", PackageName: "docker-engine"}),
}

0 comments on commit 2bfc5be

Please sign in to comment.