mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-15 16:03:51 +01:00
34 lines
564 B
YAML
34 lines
564 B
YAML
|
#cloud-config
|
||
|
|
||
|
hostname: ${hostname}
|
||
|
locale: en_IE
|
||
|
keyboard:
|
||
|
layout: ie
|
||
|
|
||
|
ssh_pwauth: true
|
||
|
users:
|
||
|
- name: ${username}
|
||
|
plain_text_passwd: ${password}
|
||
|
shell: /bin/bash
|
||
|
ssh_authorized_keys:
|
||
|
- ${ssh_key}
|
||
|
lock_passwd: false
|
||
|
sudo: ALL=(ALL) NOPASSWD:ALL
|
||
|
|
||
|
package_update: true
|
||
|
package_upgrade: true
|
||
|
package_reboot_if_required: false
|
||
|
packages:
|
||
|
- bash-completion
|
||
|
- git
|
||
|
- go
|
||
|
- htop
|
||
|
- make
|
||
|
- rsync
|
||
|
- vim
|
||
|
|
||
|
runcmd:
|
||
|
|
||
|
# Set some bash aliases
|
||
|
- echo '[[ -f ~/.bash_aliases ]] && source ~/.bash_aliases' >> /home/${username}/.bashrc
|