Sunil Shah created JCLOUDS-667:
----------------------------------
Summary: grantSudoToAdminUser
Key: JCLOUDS-667
URL: https://issues.apache.org/jira/browse/JCLOUDS-667
Project: jclouds
Issue Type: Bug
Components: jclouds-labs-google
Affects Versions: 1.7.3
Reporter: Sunil Shah
We're trying to use the AdminAccess builder to create a user that can execute
commands on nodes via sudo for configuration and package installation.
However, it looks like /usr/sbin isn't in the path for the added user - since
sudo reboot fails with:
{code}
sudo: reboot: command not found
{code}
We're setting up user as below and passing to runScript:
{code:scala}
val bootInstructions = AdminAccess.builder()
.adminUsername(request.sshUserName)
.adminPublicKey(Main.conf.publicKeyString)
.adminPrivateKey(Main.conf.privateKeyString)
.grantSudoToAdminUser(true)
.build()
{code}
--
This message was sent by Atlassian JIRA
(v6.2#6252)