3876918214
Closes #9027. Signed-off-by: Tomasz Pajor <tomek@polishgeeks.com>
16 lines
449 B
Ruby
16 lines
449 B
Ruby
class DockerMachineNfs < Formula
|
|
desc "Activates NFS on docker-machine"
|
|
homepage "https://github.com/adlogix/docker-machine-nfs"
|
|
url "https://github.com/adlogix/docker-machine-nfs/archive/0.4.1.tar.gz"
|
|
sha256 "2aee223c88d43dd35902a4cec71aef710b9ff84ff97e7577c4477c9f55bd9447"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "docker-machine-nfs.sh" => "docker-machine-nfs"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/docker-machine-nfs"
|
|
end
|
|
end
|