mirror of
https://github.com/frappe/bench.git
synced 2025-01-10 17:24:41 +00:00
f85cbc87a8
* Bench setup failed on production fix - mariadb 10.2 fix - root user used instead of frappe_user fix * fix for production on CentOS - selinux is set to permissive, in case of CentOS. This is needed to setup nginx - bench is installed in the /home/username directory and not /home/root
12 lines
291 B
YAML
12 lines
291 B
YAML
---
|
|
- hosts: localhost
|
|
tasks:
|
|
- name: insert/update inputrc for history
|
|
blockinfile:
|
|
dest: "/home/{{ frappe_user }}/.inputrc"
|
|
create: yes
|
|
block: |
|
|
## arrow up
|
|
"\e[A":history-search-backward
|
|
## arrow down
|
|
"\e[B":history-search-forward |