--- - block: - name: Install the Node.js repository key apt_key: url={{ node_js_deb_repo_key }} state=present - name: Install the Node.js repository configuration apt_repository: repo={{ item }} state=present update_cache=True with_items: '{{ node_js_deb_repo_urls }}' - name: Install the Node.js packages apt: pkg={{ node_js_pkgs }} state={{ node_js_pkg_state }} cache_valid_time=1800 tags: [ 'nodejs', 'node_js' ] - block: - name: Install the Node.js yarn repository key apt_key: url={{ node_js_yarn_deb_repo_key }} state=present - name: Install the Node.js yarn repository configuration apt_repository: repo={{ item }} state=present update_cache=True with_items: '{{ node_js_yarn_deb_repo_urls }}' - name: Install the Node.js yarn packages apt: pkg={{ node_js_yarn_pkgs }} state={{ node_js_pkg_state }} cache_valid_time=1800 when: node_js_yarn_install tags: [ 'nodejs', 'node_js', 'yarn', 'node_js_yarn' ] - block: - name: Remove the Node.js yarn packages apt: pkg={{ node_js_yarn_pkgs }} state=absent - name: Remove the Node.js yarn repository configuration apt_repository: repo={{ item }} state=absent update_cache=True with_items: '{{ node_js_yarn_deb_repo_urls }}' when: not node_js_yarn_install tags: [ 'nodejs', 'node_js', 'yarn', 'node_js_yarn' ]