You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ambari.apache.org by "Andrew Onischuk (JIRA)" <ji...@apache.org> on 2015/02/27 13:34:04 UTC

[jira] [Created] (AMBARI-9828) Ability to handle envs where sudo is not available

Andrew Onischuk created AMBARI-9828:
---------------------------------------

             Summary: Ability to handle envs where sudo is not available
                 Key: AMBARI-9828
                 URL: https://issues.apache.org/jira/browse/AMBARI-9828
             Project: Ambari
          Issue Type: Bug
            Reporter: Andrew Onischuk
            Assignee: Andrew Onischuk
             Fix For: 2.0.0


Attempted to start "ambari-agent start" as root but it fails with "You can't
perform this operation as non-sudoer user. Please, re-login as one" message.
Commented out this code and start worked...

    
    
    
    echo "" | sudo -S -l > /dev/null 2>&1
    if [ "$?" != "0" ]; then
     echo "You can't perform this operation as non-sudoer user. Please, re-login as one"
     exit 0
    fi
    
    current_user=`awk -v val=$EUID -F ":" '$3==val{print $1}' /etc/passwd`
    
    change_files_permissions() {
    	sudo chown -R $current_user "/var/run/ambari-agent"
    	sudo chown -R $current_user "/var/log/ambari-agent"
    	sudo chown -R $current_user "/var/lib/ambari-agent/data"
    	sudo chown -R $current_user "/var/lib/ambari-agent/cache"
    	sudo chown 	  $current_user "/usr/lib/ambari-agent"
    }
    

I think there is a broader issue here with sudo in certain envs.





--
This message was sent by Atlassian JIRA
(v6.3.4#6332)