Feat: move gnome to workstation and order/test it
This commit is contained in:
parent
e346a61ced
commit
cc40db2449
@ -7,6 +7,7 @@ pacman_utils:
|
|||||||
- cups-pdf
|
- cups-pdf
|
||||||
- avahi
|
- avahi
|
||||||
- nss-mdns
|
- nss-mdns
|
||||||
|
- networkmanager
|
||||||
|
|
||||||
pacman_cli:
|
pacman_cli:
|
||||||
- git-annex
|
- git-annex
|
||||||
@ -94,6 +95,23 @@ pacman_programming:
|
|||||||
- nodejs
|
- nodejs
|
||||||
- yarn
|
- yarn
|
||||||
|
|
||||||
|
pacman_gnome:
|
||||||
|
- gnome
|
||||||
|
- gdm
|
||||||
|
- gnome-tweaks
|
||||||
|
- gparted
|
||||||
|
- transmission-gtk
|
||||||
|
- quodlibet
|
||||||
|
- network-manager-applet
|
||||||
|
- gnome-keyring
|
||||||
|
- grsync
|
||||||
|
- soundconverter
|
||||||
|
- picard
|
||||||
|
- shotwell
|
||||||
|
- pitivi
|
||||||
|
- seahorse
|
||||||
|
- python-psutil
|
||||||
|
|
||||||
pacman_pkgs:
|
pacman_pkgs:
|
||||||
- "{{ pacman_utils }}"
|
- "{{ pacman_utils }}"
|
||||||
- "{{ pacman_cli }}"
|
- "{{ pacman_cli }}"
|
||||||
@ -125,7 +143,11 @@ aur_pkgs:
|
|||||||
- "{{ aur_fonts }}"
|
- "{{ aur_fonts }}"
|
||||||
- "{{ aur_work }}"
|
- "{{ aur_work }}"
|
||||||
|
|
||||||
|
|
||||||
|
# Gnome
|
||||||
|
gnome_environnement: false
|
||||||
|
|
||||||
# Autofs
|
# Autofs
|
||||||
autofs:
|
autofs:
|
||||||
host: nas
|
- host: nas
|
||||||
|
|
||||||
|
@ -1,52 +0,0 @@
|
|||||||
galaxy_info:
|
|
||||||
author: your name
|
|
||||||
description: your role description
|
|
||||||
company: your company (optional)
|
|
||||||
|
|
||||||
# If the issue tracker for your role is not on github, uncomment the
|
|
||||||
# next line and provide a value
|
|
||||||
# issue_tracker_url: http://example.com/issue/tracker
|
|
||||||
|
|
||||||
# Choose a valid license ID from https://spdx.org - some suggested licenses:
|
|
||||||
# - BSD-3-Clause (default)
|
|
||||||
# - MIT
|
|
||||||
# - GPL-2.0-or-later
|
|
||||||
# - GPL-3.0-only
|
|
||||||
# - Apache-2.0
|
|
||||||
# - CC-BY-4.0
|
|
||||||
license: license (GPL-2.0-or-later, MIT, etc)
|
|
||||||
|
|
||||||
min_ansible_version: 2.1
|
|
||||||
|
|
||||||
# If this a Container Enabled role, provide the minimum Ansible Container version.
|
|
||||||
# min_ansible_container_version:
|
|
||||||
|
|
||||||
#
|
|
||||||
# Provide a list of supported platforms, and for each platform a list of versions.
|
|
||||||
# If you don't wish to enumerate all versions for a particular platform, use 'all'.
|
|
||||||
# To view available platforms and versions (or releases), visit:
|
|
||||||
# https://galaxy.ansible.com/api/v1/platforms/
|
|
||||||
#
|
|
||||||
# platforms:
|
|
||||||
# - name: Fedora
|
|
||||||
# versions:
|
|
||||||
# - all
|
|
||||||
# - 25
|
|
||||||
# - name: SomePlatform
|
|
||||||
# versions:
|
|
||||||
# - all
|
|
||||||
# - 1.0
|
|
||||||
# - 7
|
|
||||||
# - 99.99
|
|
||||||
|
|
||||||
galaxy_tags: []
|
|
||||||
# List tags for your role here, one per line. A tag is a keyword that describes
|
|
||||||
# and categorizes the role. Users find roles by searching for tags. Be sure to
|
|
||||||
# remove the '[]' above, if you add tags to this list.
|
|
||||||
#
|
|
||||||
# NOTE: A tag is limited to a single word comprised of alphanumeric characters.
|
|
||||||
# Maximum 20 tags per role.
|
|
||||||
|
|
||||||
dependencies: []
|
|
||||||
# List your role dependencies here, one per line. Be sure to remove the '[]' above,
|
|
||||||
# if you add dependencies to this list.
|
|
@ -1,17 +1,23 @@
|
|||||||
---
|
---
|
||||||
- name: Converge
|
- name: Converge
|
||||||
hosts: all
|
hosts: all
|
||||||
|
become: true
|
||||||
vars:
|
vars:
|
||||||
pacman_pkgs:
|
pacman_pkgs:
|
||||||
- "{{ pacman_utils }}"
|
- "{{ pacman_utils }}"
|
||||||
aur_pkgs:
|
aur_pkgs:
|
||||||
- "{{ aur_utils }}"
|
- "{{ aur_utils }}"
|
||||||
|
|
||||||
pre_tasks:
|
pre_tasks:
|
||||||
- name: Install pkgs
|
- name: Update cache
|
||||||
community.general.pacman:
|
community.general.pacman:
|
||||||
update_cache: true
|
update_cache: true
|
||||||
become: true
|
- name: set AUR
|
||||||
|
include_role:
|
||||||
|
name: "../arch_aur"
|
||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
- name: "Include workstation"
|
- name: "Include workstation"
|
||||||
include_role:
|
include_role:
|
||||||
name: "workstation"
|
name: "workstation"
|
||||||
|
|
||||||
|
@ -4,8 +4,11 @@ dependency:
|
|||||||
driver:
|
driver:
|
||||||
name: vagrant
|
name: vagrant
|
||||||
platforms:
|
platforms:
|
||||||
- name: instance
|
- name: archlinux
|
||||||
|
box: "archlinux/archlinux"
|
||||||
provisioner:
|
provisioner:
|
||||||
name: ansible
|
name: ansible
|
||||||
verifier:
|
verifier:
|
||||||
name: testinfra
|
name: testinfra
|
||||||
|
options:
|
||||||
|
sudo: true
|
||||||
|
@ -21,3 +21,7 @@
|
|||||||
with_items: "{{ aur_pkgs }}"
|
with_items: "{{ aur_pkgs }}"
|
||||||
become: yes
|
become: yes
|
||||||
become_user: aur_builder
|
become_user: aur_builder
|
||||||
|
|
||||||
|
- name: Install gnome environnement
|
||||||
|
import_tasks: gnome.yml
|
||||||
|
when: gnome_environnement
|
||||||
|
13
roles/workstation/tasks/gnome.yml
Normal file
13
roles/workstation/tasks/gnome.yml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
# tasks file for gnome
|
||||||
|
- name: Install gnome pkgs
|
||||||
|
community.general.pacman:
|
||||||
|
name: "{{ item }}"
|
||||||
|
state: present
|
||||||
|
with_items: "{{ pacman_gnome }}"
|
||||||
|
when: ansible_os_family == "Archlinux"
|
||||||
|
|
||||||
|
- name: enable service gdm
|
||||||
|
systemd:
|
||||||
|
name: gdm
|
||||||
|
enabled: yes
|
@ -1,18 +1,30 @@
|
|||||||
---
|
---
|
||||||
- name: Create NAS share directory
|
- name: Create auto host share directory
|
||||||
file:
|
file:
|
||||||
path: "/media/{{ item.host }}"
|
path: "/media/{{ item.host }}"
|
||||||
state: directory
|
state: directory
|
||||||
with_items: "{{ autofs }}"
|
with_items: "{{ autofs }}"
|
||||||
|
|
||||||
- name: Activate NAS shares for autofs
|
- name: Activate host shares for autofs
|
||||||
lineinfile:
|
lineinfile:
|
||||||
path: /etc/autofs/auto.master
|
path: /etc/autofs/auto.master
|
||||||
line: "/media/{{ item.host }} /etc/autofs/auto.{{ item.host }} --timeout=60 --browse"
|
line: "/media/{{ item.host }} /etc/autofs/auto.{{ item.host }} --timeout=60 --browse"
|
||||||
with_items: "{{ autofs }}"
|
with_items: "{{ autofs }}"
|
||||||
|
|
||||||
- name: NAS autofs config file
|
- name: autofs config file
|
||||||
template:
|
template:
|
||||||
src: "files/autofs.{{ item.host }}"
|
src: "files/autofs.{{ item.host }}"
|
||||||
dest: "/etc/autofs/auto.{{ item.host }}"
|
dest: "/etc/autofs/auto.{{ item.host }}"
|
||||||
with_items: "{{ autofs }}"
|
with_items: "{{ autofs }}"
|
||||||
|
|
||||||
|
- name: enable service nfs
|
||||||
|
systemd:
|
||||||
|
name: nfs-client.target
|
||||||
|
enabled: yes
|
||||||
|
state: started
|
||||||
|
|
||||||
|
- name: Enable autofs daemon
|
||||||
|
service:
|
||||||
|
name: autofs
|
||||||
|
state: started
|
||||||
|
enabled: yes
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
# tasks file for workstation
|
# tasks file for workstation
|
||||||
- name: Install for arch
|
- name: Install for arch
|
||||||
import_tasks: arch.yml
|
import_tasks: arch.yml
|
||||||
when: ansible_os_family == "Archlinux"
|
|
||||||
|
|
||||||
- name: enable service cups
|
- name: enable service cups
|
||||||
systemd:
|
systemd:
|
||||||
@ -23,14 +22,19 @@
|
|||||||
enabled: yes
|
enabled: yes
|
||||||
state: started
|
state: started
|
||||||
|
|
||||||
- name: enable service nfs
|
- name: disable old network services
|
||||||
systemd:
|
systemd:
|
||||||
name: nfs-client.target
|
name: '{{ item }}'
|
||||||
enabled: yes
|
enabled: no
|
||||||
state: started
|
with_items:
|
||||||
|
- dhcpcd
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
- name: Enable autofs daemon
|
- name: enable service NetworkManager
|
||||||
service:
|
systemd:
|
||||||
name: autofs
|
name: NetworkManager
|
||||||
state: started
|
|
||||||
enabled: yes
|
enabled: yes
|
||||||
|
|
||||||
|
- name: activate autofs
|
||||||
|
import_tasks: home_mounts.yml
|
||||||
|
when: autofs | length > 0
|
||||||
|
Loading…
Reference in New Issue
Block a user