2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-23 04:29:02 +00:00
bench/playbooks/create_user.yml

38 lines
1.1 KiB
YAML
Raw Normal View History

2016-05-25 10:47:48 +00:00
---
2018-02-05 09:37:14 +00:00
2016-05-25 10:47:48 +00:00
- hosts: localhost
tasks:
- name: Create user
user:
name: '{{ frappe_user }}'
generate_ssh_key: yes
- name: Set home folder perms
file:
path: '/home/{{ frappe_user }}'
mode: 'o+rx'
2017-05-15 15:44:47 +00:00
owner: '{{ frappe_user }}'
group: '{{ frappe_user }}'
recurse: yes
2016-07-27 07:40:52 +00:00
when: ansible_distribution == 'Ubuntu' or ansible_distribution == 'CentOS' or ansible_distribution == 'Debian'
2016-05-25 10:47:48 +00:00
- name: Set home folder perms
file:
path: '/Users/{{ frappe_user }}'
mode: 'o+rx'
2017-05-15 15:44:47 +00:00
owner: '{{ frappe_user }}'
group: '{{ frappe_user }}'
recurse: yes
2016-05-25 10:47:48 +00:00
when: ansible_distribution == 'MacOSX'
- name: Set /tmp/.bench folder perms
2017-05-15 15:44:47 +00:00
file:
path: '{{ repo_path }}'
owner: '{{ frappe_user }}'
group: '{{ frappe_user }}'
recurse: yes
2018-02-05 09:37:14 +00:00
when: ansible_distribution == 'Ubuntu' or ansible_distribution == 'CentOS' or ansible_distribution == 'Debian'
- name: Change default shell to bash
shell: "chsh {{ frappe_user }} -s $(which bash)"
2018-02-05 09:37:14 +00:00
...