test(packer): add image for opensuse & some cleanup.
This commit is contained in:
parent
46165fe58f
commit
9731a09588
5 changed files with 112 additions and 13 deletions
33
tests/packer/init/opensuse-kde.user-data.yml
Normal file
33
tests/packer/init/opensuse-kde.user-data.yml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue