I have several Drupal installs on an Apache2 Web server. Each install is a separate virtual host on the Document Root, like
/var/www/html/site-1
/var/www/html/site-2
/var/www/html/site-3
...
I want to perform Drush commands just on "site-1", for example install a module. In order to do that just for "site-1", should i do the following?
1.) cd /var/www/html/site-1/sites/all/modules 2.) drush en module_name -y
Will the above download and enable "module_name" only for "site-1"?
Thanks!