Playbooks to a new Lilik
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.
 
 
 
 

39 lines
1.1 KiB

---
- block:
- name: install {{ service_name }}
apt:
pkg: "{{ service_packages }}"
state: present
update_cache: yes
cache_valid_time: 3600
install_recommends: '{{ install_recommends | default("no") }}'
- name: start {{ service_name }} at boot
service:
name: "{{ service_name }}"
enabled: yes
when: ansible_distribution != 'openwrt'
- block:
- name: install {{ service_name }}
opkg:
name: "{{ item }}"
state: present
with_items: "{{ service_packages }}"
# remove this in ansible 2.3 (see next comment)
- name: link /etc/init.d/sshd init script to /etc/init.d/ssh
file:
src: "/etc/init.d/sshd"
dest: "/etc/init.d/ssh"
state: link
when: service_name == 'ssh'
# waithing for ansible 2.3 (https://docs.ansible.com/ansible/openwrt_init_module.html)
# - openwrt_init:
# name: "{{ service_name }}"
# enabled: yes
- name: start {{ service_name }} at boot
shell: "/etc/init.d/{{ service_name }} enable"
changed_when: false
when: ansible_distribution == 'openwrt'