cloud-init how to add default user to sudoers.d

ε祈祈猫儿з 提交于 2019-12-09 19:12:22

问题


I boot strap a centos 6.5 AMI with this user data:

#cloud-config
users:
  - default
  - name: my-user
  - sudo: ALL=(ALL) NOPASSWD:ALL

My machine comes up with the user cloud-user as the default user, not my-user. My public key has been copied to the cloud-user. So, in short, it does not work.

If I do this, the default user is my-user:

#cloud-config
user: my-user
sudo: ALL=(ALL) NOPASSWD:ALL

But I cannot sudo -i with this user.

How can I in userdata set my-user to be the default and have sudo provileges set?


回答1:


You need to change the default user in system, see configuration below.

#cloud-config
system_info:
  default_user:
    name: my-user
    sudo: ALL=(ALL) NOPASSWD:ALL

I verified in openstack environment (should be the same)

  • ssh use my-user as default user with default private key
  • sudo is also ok

See http://cloudinit.readthedocs.org/en/latest/topics/examples.html#including-users-and-groups for more detail



来源:https://stackoverflow.com/questions/25688850/cloud-init-how-to-add-default-user-to-sudoers-d

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!