summaryrefslogtreecommitdiffstats
path: root/roles/obs/tasks/user.yml
blob: fae7d9fe31163296c840fa2d14ea83b70d056106 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
- name: Add group 
  group:
    name: "{{ emacsconf_group }}"
- name: Add user
  user:
    name: "{{ emacsconf_user }}"
    group: "{{ emacsconf_group }}"
    shell: /bin/bash
#    password: "{{ emacsconf_unix_password }}"
- name: Create SSH folder
  file:
    path: "/home/{{ emacsconf_user }}/.ssh"
    owner: "{{ emacsconf_user }}"
    state: directory
    mode: 700
- name: Set up SSH key access
  template:
    src: authorized_keys
    dest: "/home/{{ emacsconf_user }}/.ssh/authorized_keys"
- name: Change ownership of SSH directory
  file:
    path: "/home/{{ emacsconf_user }}/.ssh"
    recurse: true
    owner: "{{ emacsconf_user }}"
    mode: "u+rwX,g-rwx,o-rwx"
- name: Create bin dir
  file:
    path: "/home/{{ emacsconf_user }}/bin"
    state: directory
    owner: "{{ emacsconf_user }}"
- name: Set up bashrc
  template:
    src: bashrc
    dest: "/home/{{ emacsconf_user }}/.bashrc"
    owner: "{{ emacsconf_user }}"
    group: "{{ emacsconf_group }}"