Suppose I have the following command
curl -Lo .amb j.mp/docker-ambari && . .amb && amb-deploy-cluster
(assuming this is running on vagrant - so not a real machine)
And I know I've got a permission issue and want to add sudo - do I need to add it once:
sudo curl -Lo .amb j.mp/docker-ambari && . .amb && amb-deploy-cluster
or more?
sudo curl -Lo .amb j.mp/docker-ambari && sudo . .amb && sudo amb-deploy-cluster