ansible-role-nginx/tasks/opensource/install-oss-bsd.yml
Vladimir Botka 27d94628bd Separate installation of Linux and BSD (#182)
* Added variable nginx_linux_families: ['Debian', 'RedHat', 'Suse']
* Added variable nginx_bsd_systems: ['FreeBSD', 'NetBSD', 'OpenBSD', 'DragonFlyBSD', 'HardenedBSD']
* Handler started only in "not ansible_check_mode" to avoid --check failure when service hes not been installed yet
* Installation of Linux moved to install-oss-linux.yml
* Installation of BSD moved to install-oss-bsd.yml
* File setup-freebsd.yml deleted
2019-11-18 21:09:10 +01:00

104 lines
3.0 KiB
YAML

---
- name: "(Install: FreeBSD) Update ports"
block:
- name: "(Install: FreeBSD) Fetch Ports"
command: portsnap fetch --interactive
args:
creates: /var/db/portsnap/INDEX
- name: "(Install: FreeBSD) Extract Ports"
command: portsnap extract
args:
creates: /usr/ports
when:
- ansible_system == 'FreeBSD'
- nginx_bsd_update_ports
- name: "(Install: FreeBSD)"
block:
- name: "(Install: FreeBSD) Install NGINX package"
pkgng:
name: "www/nginx{{ nginx_version | default('') }}"
state: present
when: nginx_bsd_install_packages
notify: "(Handler: All OSs) Start NGINX"
- name: "(Install: FreeBSD) Install NGINX port"
portinstall:
name: "www/nginx{{ nginx_version | default('') }}"
use_packages: "{{ nginx_bsd_portinstall_use_packages | default(omit) }}"
state: present
when: not nginx_bsd_install_packages
notify: "(Handler: All OSs) Start NGINX"
when: ansible_system == 'FreeBSD'
- name: "(Install: OpenBSD)"
block:
- name: "(Install: OpenBSD) Install NGINX package"
openbsd_pkg:
name: "nginx{{ nginx_version | default('') }}"
build: false
state: present
when: nginx_bsd_install_packages
notify: "(Handler: All OSs) Start NGINX"
- name: "(Install: OpenBSD) Install NGINX port"
openbsd_pkg:
name: "nginx{{ nginx_version | default('') }}"
build: true
state: present
when: not nginx_bsd_install_packages
notify: "(Handler: All OSs) Start NGINX"
when: ansible_system == 'OpenBSD'
- name: "(Install: NetBSD)"
block:
- name: "(Install: NetBSD) Install NGINX package"
command: "pkg_add www/nginx{{ nginx_version | default('') }}"
when: nginx_bsd_install_packages
notify: "(Handler: All OSs) Start NGINX"
- name: "(Install: NetBSD) Install NGINX port"
fail:
msg: "{{ ansible_system }} Install NGINX port not implemented."
when: not nginx_bsd_install_packages
when: ansible_system == 'NetBSD'
- name: "(Install: DragonFlyBSD)"
block:
- name: "(Install: DragonFlyBSD) Install NGINX package"
command: "pkg install www/nginx{{ nginx_version | default('') }}"
when: nginx_bsd_install_packages
notify: "(Handler: All OSs) Start NGINX"
- name: "(Install: DragonFlyBSD) Install NGINX port"
fail:
msg: "{{ ansible_system }} Install NGINX port not implemented."
when: not nginx_bsd_install_packages
when: ansible_system == 'DragonFlyBSD'
- name: "(Install: HardenedBSD)"
block:
- name: "(Install: HardenedBSD) Install NGINX package"
command: "pkg install www/nginx{{ nginx_version | default('') }}"
when: nginx_bsd_install_packages
notify: "(Handler: All OSs) Start NGINX"
- name: "(Install: HardenedBSD) Install NGINX port"
fail:
msg: "{{ ansible_system }} Install NGINX port not implemented."
when: not nginx_bsd_install_packages
when: ansible_system == 'HardenedBSD'