diff --git a/roles/user/.travis.yml b/roles/user/.travis.yml new file mode 100644 index 0000000..36bbf62 --- /dev/null +++ b/roles/user/.travis.yml @@ -0,0 +1,29 @@ +--- +language: python +python: "2.7" + +# Use the new container infrastructure +sudo: false + +# Install ansible +addons: + apt: + packages: + - python-pip + +install: + # Install ansible + - pip install ansible + + # Check ansible version + - ansible --version + + # Create ansible.cfg with correct roles_path + - printf '[defaults]\nroles_path=../' >ansible.cfg + +script: + # Basic role syntax check + - ansible-playbook tests/test.yml -i tests/inventory --syntax-check + +notifications: + webhooks: https://galaxy.ansible.com/api/v1/notifications/ \ No newline at end of file diff --git a/roles/user/.yamllint b/roles/user/.yamllint new file mode 100644 index 0000000..8827676 --- /dev/null +++ b/roles/user/.yamllint @@ -0,0 +1,33 @@ +--- +# Based on ansible-lint config +extends: default + +rules: + braces: + max-spaces-inside: 1 + level: error + brackets: + max-spaces-inside: 1 + level: error + colons: + max-spaces-after: -1 + level: error + commas: + max-spaces-after: -1 + level: error + comments: disable + comments-indentation: disable + document-start: disable + empty-lines: + max: 3 + level: error + hyphens: + level: error + indentation: disable + key-duplicates: enable + line-length: disable + new-line-at-end-of-file: disable + new-lines: + type: unix + trailing-spaces: disable + truthy: disable diff --git a/roles/user/README.md b/roles/user/README.md new file mode 100644 index 0000000..225dd44 --- /dev/null +++ b/roles/user/README.md @@ -0,0 +1,38 @@ +Role Name +========= + +A brief description of the role goes here. + +Requirements +------------ + +Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required. + +Role Variables +-------------- + +A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well. + +Dependencies +------------ + +A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles. + +Example Playbook +---------------- + +Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too: + + - hosts: servers + roles: + - { role: username.rolename, x: 42 } + +License +------- + +BSD + +Author Information +------------------ + +An optional section for the role authors to include contact information, or a website (HTML is not allowed). diff --git a/roles/user/defaults/main.yml b/roles/user/defaults/main.yml new file mode 100644 index 0000000..d26c1f3 --- /dev/null +++ b/roles/user/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for user diff --git a/roles/user/handlers/main.yml b/roles/user/handlers/main.yml new file mode 100644 index 0000000..8a97928 --- /dev/null +++ b/roles/user/handlers/main.yml @@ -0,0 +1,2 @@ +--- +# handlers file for user diff --git a/roles/user/molecule/default/INSTALL.rst b/roles/user/molecule/default/INSTALL.rst new file mode 100644 index 0000000..0c4bf5c --- /dev/null +++ b/roles/user/molecule/default/INSTALL.rst @@ -0,0 +1,23 @@ +********************************* +Vagrant driver installation guide +********************************* + +Requirements +============ + +* Vagrant +* Virtualbox, Parallels, VMware Fusion, VMware Workstation or VMware Desktop + +Install +======= + +Please refer to the `Virtual environment`_ documentation for installation best +practices. If not using a virtual environment, please consider passing the +widely recommended `'--user' flag`_ when invoking ``pip``. + +.. _Virtual environment: https://virtualenv.pypa.io/en/latest/ +.. _'--user' flag: https://packaging.python.org/tutorials/installing-packages/#installing-to-the-user-site + +.. code-block:: bash + + $ pip install 'molecule_vagrant' diff --git a/roles/user/molecule/default/converge.yml b/roles/user/molecule/default/converge.yml new file mode 100644 index 0000000..5c16787 --- /dev/null +++ b/roles/user/molecule/default/converge.yml @@ -0,0 +1,46 @@ +--- +- name: Converge + hosts: all + become: yes + vars: + users: + - username: user + password: "$y$j9T$PR8GfM2MjGudOCd7hF9NP1$/qRGtuNuWaRVVGmB1A4rgtaT0MMB9IoB4fnaxW1kvf4" #plop + shell: "/bin/zsh" + config: + giturl: "https://git.opytex.org/lafrite/dotfiles.git" + stowing: ["nvim", "tmux", "zsh"] + - username: admin + password: "$y$j9T$PR8GfM2MjGudOCd7hF9NP1$/qRGtuNuWaRVVGmB1A4rgtaT0MMB9IoB4fnaxW1kvf4" #plop + groups: ["wheel"] + system: yes + config: + giturl: "https://git.opytex.org/lafrite/dotfiles.git" + stowing: ["tmux"] + + pre_tasks: + - name: update_cache for arch + pacman: + name: + - zsh + state: present + update_cache: yes + become: yes + when: ansible_os_family == "Archlinux" + + - name: update_cache for debian + apt: + name: + - zsh + state: present + update_cache: yes + become: yes + when: ansible_os_family == "Debian" + + tasks: + - name: "Include user" + include_role: + name: "user" + loop: "{{ users }}" + loop_control: + loop_var: user diff --git a/roles/user/molecule/default/molecule.yml b/roles/user/molecule/default/molecule.yml new file mode 100644 index 0000000..40a4759 --- /dev/null +++ b/roles/user/molecule/default/molecule.yml @@ -0,0 +1,16 @@ +--- +dependency: + name: galaxy +driver: + name: vagrant +platforms: + - name: archlinux + box: "archlinux/archlinux" + - name: Debian + box: "debian/bullseye64" +provisioner: + name: ansible +verifier: + name: testinfra + options: + sudo: true diff --git a/roles/user/molecule/default/tests/conftest.py b/roles/user/molecule/default/tests/conftest.py new file mode 100644 index 0000000..f7ddb3f --- /dev/null +++ b/roles/user/molecule/default/tests/conftest.py @@ -0,0 +1,22 @@ +"""PyTest Fixtures.""" +from __future__ import absolute_import + +import os + +import pytest + + +def pytest_runtest_setup(item): + """Run tests only when under molecule with testinfra installed.""" + try: + import testinfra + except ImportError: + pytest.skip("Test requires testinfra", allow_module_level=True) + if "MOLECULE_INVENTORY_FILE" in os.environ: + pytest.testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner( + os.environ["MOLECULE_INVENTORY_FILE"] + ).get_hosts("all") + else: + pytest.skip( + "Test should run only from inside molecule.", allow_module_level=True + ) diff --git a/roles/user/molecule/default/tests/test_default.py b/roles/user/molecule/default/tests/test_default.py new file mode 100644 index 0000000..6919b5d --- /dev/null +++ b/roles/user/molecule/default/tests/test_default.py @@ -0,0 +1,31 @@ +"""Role testing files using testinfra.""" + + +def test_create_users(host): + """ Validate user creation """ + user = host.user("user") + assert user.exists + assert user.uid >= 1000 + assert user.shell == "/bin/zsh" + assert user.home == f"/home/{user.name}" + + + admin = host.user("admin") + assert admin.exists + assert admin.uid < 1000 + assert admin.shell == "/bin/bash" + assert admin.home == f"/home/{admin.name}" + +def test_install_git_stow(host): + pass + +def test_clone_dotfiles(host): + user = host.user("user") + dotfiles = host.file(user.home + "/.dotfiles") + assert dotfiles.exists + assert dotfiles.user == user.name + + admin = host.user("admin") + dotfiles = host.file(admin.home + "/.dotfiles") + assert dotfiles.exists + assert dotfiles.user == admin.name diff --git a/roles/user/tasks/arch.yml b/roles/user/tasks/arch.yml new file mode 100644 index 0000000..2a8502b --- /dev/null +++ b/roles/user/tasks/arch.yml @@ -0,0 +1,12 @@ +--- +- name: Install stow + community.general.pacman: + name: stow + state: present + become: true + +- name: Install git + community.general.pacman: + name: git + state: present + become: true diff --git a/roles/user/tasks/debian.yml b/roles/user/tasks/debian.yml new file mode 100644 index 0000000..d37ecf4 --- /dev/null +++ b/roles/user/tasks/debian.yml @@ -0,0 +1,14 @@ +--- +- name: Install stow + apt: + name: stow + state: present + update_cache: yes + become: true + +- name: Install git + apt: + name: git + state: present + update_cache: yes + become: true diff --git a/roles/user/tasks/main.yml b/roles/user/tasks/main.yml new file mode 100644 index 0000000..155c1b5 --- /dev/null +++ b/roles/user/tasks/main.yml @@ -0,0 +1,45 @@ +--- +# tasks file for user +- name: users -- Ensure wheel group exists + group: + name: wheel + state: present + +- name: create users + ansible.builtin.user: + name: "{{ user.username }}" + update_password: on_create + password: "{{ user.password | password_hash('sha512')}}" + group: "{{ user.group | default('users') }}" + groups: "{{ user.groups | default('') }}" + shell: "{{ user.shell | default('/bin/bash') }}" + state: present + system: "{{ user.system | default('no') }}" + +- name: Install for arch + import_tasks: arch.yml + when: ansible_os_family == "Archlinux" + +- name: Install for debian + import_tasks: debian.yml + when: ansible_os_family == "Debian" + +- name: Clone dotfiles + ansible.builtin.git: + repo: "{{ user.config.giturl }}" + dest: "/home/{{ user.username }}/.dotfiles" + become: yes + +- name: user owns its dotfiles + ansible.builtin.file: + path: "/home/{{ user.username }}/.dotfiles" + owner: "{{ user.username }}" + become: yes + +- name: stow configs + ansible.builtin.command: + cmd: stow {{ item }} + chdir: "/home/{{ user.username }}/.dotfiles" + with_items: "{{ user.config.stowing }}" + become: yes + diff --git a/roles/user/tests/inventory b/roles/user/tests/inventory new file mode 100644 index 0000000..878877b --- /dev/null +++ b/roles/user/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/roles/user/tests/test.yml b/roles/user/tests/test.yml new file mode 100644 index 0000000..724a2ab --- /dev/null +++ b/roles/user/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - user diff --git a/roles/user/vars/main.yml b/roles/user/vars/main.yml new file mode 100644 index 0000000..578d047 --- /dev/null +++ b/roles/user/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for user