mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
dropbox .tar.gz is now a gzip format file for real so change tar flag from j to z
This commit is contained in:
parent
581a1f0edb
commit
4355675d0c
1 changed files with 1 additions and 2 deletions
|
@ -1,7 +1,6 @@
|
|||
class docker {
|
||||
|
||||
# update this with latest docker binary distro
|
||||
# XXX: this is actually a bzip2 file rather than gzip despite extension
|
||||
$docker_url = "https://dl.dropbox.com/u/20637798/docker.tar.gz"
|
||||
# update this with latest go binary distry
|
||||
$go_url = "http://go.googlecode.com/files/go1.0.3.linux-amd64.tar.gz"
|
||||
|
@ -26,7 +25,7 @@ class docker {
|
|||
|
||||
exec { "fetch-docker" :
|
||||
require => Package["wget"],
|
||||
command => "/usr/bin/wget -O - $docker_url | /bin/tar xj -C /home/vagrant",
|
||||
command => "/usr/bin/wget -O - $docker_url | /bin/tar xz -C /home/vagrant",
|
||||
creates => "/home/vagrant/docker/dockerd"
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue