Closed (fixed)
Project:
Drush
Version:
8.x-6.x-dev
Component:
Core Commands
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
13 Sep 2012 at 22:57 UTC
Updated:
9 May 2013 at 18:30 UTC
Jump to comment: Most recent file
Comments
Comment #1
greg.1.anderson commentedDrush is only calling uname to see if you are running on Cygwin, which you are not. As a workaround to this problem, you could make sure that $HOME/bin occurs in your PATH before uname does, and make your own uname script that does nothing.
e.g.: in $HOME/bin/uname
Don't forget to chmod +x your uname script.
Comment #2
modctek commentedWorked like a charm, thanks!
Comment #4
jonhattanI'm also experiencing this in a shared hosting with chrooted ssh access. I think this is a increasingly common scenario.
The warning can be avoid easily if we check the user has rights to execute uname.
Comment #5
greg.1.anderson commentedI don't have a restricted shared host environment to test #4 on, but it works fine on normal environments, and looks like a good thing to do in general.
Comment #6
greg.1.anderson commentedChanging classification to feature request - support restricted environments with no access to uname.
Comment #7
jonhattanCommitted to both branches.