You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
333 B
13 lines
333 B
3 years ago
|
---
|
||
|
- name: linode_preflight | ohmybash | Install dependency
|
||
|
apt:
|
||
|
pkg: curl
|
||
|
state: present
|
||
|
become: yes
|
||
|
|
||
|
- name: linode_preflight | ohmybash | Install OhMyBash
|
||
|
shell:
|
||
|
cmd: bash -c "$(curl -fsSL https://raw.githubusercontent.com/ohmybash/oh-my-bash/master/tools/install.sh)"
|
||
|
become: yes
|
||
|
become_user: "{{ user }}"
|