Guest User

Untitled

a guest
Jun 25th, 2022
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. #cloud-config
  2. users:
  3. - name: uzername
  4. sudo: ALL=(ALL) NOPASSWD:ALL
  5. groups: users, admin
  6. home: /home/uzername
  7. shell: /bin/bash
  8. ssh-authorized-keys:
  9. - ssh-rsa base64==
  10. ssh_pwauth: True
  11. disable_root: false
  12. chpasswd:
  13. list: |
  14. uzername:linux
  15. expire: False
  16. package_update: true
  17. packages:
  18. - qemu-guest-agent
  19. growpart:
  20. mode: auto
  21. devices: ['/']
  22. network_config:
  23. version: 1
  24. config:
  25. - type: physical
  26. name: eth0
  27. subnets:
  28. - type: dhcp
  29. preserve_hostname: true
  30. fqdn: hostname.lab.local
  31. hostname: hostname
Add Comment
Please, Sign In to add comment