Fix linting issues
This commit is contained in:
parent
286b0a4c6b
commit
e39272e5b7
1 changed files with 17 additions and 18 deletions
|
@ -1,32 +1,19 @@
|
|||
- file:
|
||||
- name: Create private directory
|
||||
file:
|
||||
state: directory
|
||||
recurse: true
|
||||
path: "{{ home }}/Private"
|
||||
owner: "{{ user }}"
|
||||
mode: 0700
|
||||
|
||||
- file:
|
||||
- name: Create KeepassXC config directory
|
||||
file:
|
||||
state: directory
|
||||
recurse: true
|
||||
path: "{{ home }}/.config/keepassxc"
|
||||
owner: "{{ user }}"
|
||||
mode: 0700
|
||||
|
||||
- set_fact:
|
||||
keepassxc_config:
|
||||
- {section: General, option: "SSHAgent", value: "true"}
|
||||
- {section: General, option: "AutoSaveAfterEveryChange", value: "true"}
|
||||
- {section: General, option: "LastOpenedDatabases", value: "{{ home }}/Private/KeePass/Password Safe.kdbx"}
|
||||
- {section: General, option: "SingleInstance", value: "true"}
|
||||
- {section: Http, option: "Enabled", value: "false"}
|
||||
- {section: GUI, option: "ShowTrayIcon", value: "true"}
|
||||
- {section: GUI, option: "MinimizeToTray", value: "true"}
|
||||
- {section: GUI, option: "MinimizeOnStartup", value: "true"}
|
||||
- {section: security, option: "lockdatabasescreenlock", value: "true"}
|
||||
- {section: Browser, option: "Enabled", value: "true"}
|
||||
- {section: Browser, option: "AlwaysAllowAccess", value: "true"}
|
||||
- {section: Browser, option: "AlwaysAllowUpdate", value: "true"}
|
||||
|
||||
- name: Set KeepassXC configuration
|
||||
ini_file:
|
||||
path: "{{ home }}/.config/keepassxc/keepassxc.ini"
|
||||
|
@ -35,6 +22,18 @@
|
|||
section: "{{ item.section }}"
|
||||
option: "{{ item.option }}"
|
||||
value: "{{ item.value }}"
|
||||
loop: "{{ keepassxc_config }}"
|
||||
loop_control:
|
||||
label: "{{ item.section }}.{{ item.option }}={{ item.value }}"
|
||||
loop:
|
||||
- {section: General, option: SSHAgent, value: "true"}
|
||||
- {section: General, option: AutoSaveAfterEveryChange, value: "true"}
|
||||
- {section: General, option: LastOpenedDatabases, value: "{{ home }}/Private/KeePass/Password Safe.kdbx"}
|
||||
- {section: General, option: SingleInstance, value: "true"}
|
||||
- {section: Http, option: Enabled, value: "false"}
|
||||
- {section: GUI, option: ShowTrayIcon, value: "true"}
|
||||
- {section: GUI, option: MinimizeToTray, value: "true"}
|
||||
- {section: GUI, option: MinimizeOnStartup, value: "true"}
|
||||
- {section: security, option: lockdatabasescreenlock, value: "true"}
|
||||
- {section: Browser, option: Enabled, value: "true"}
|
||||
- {section: Browser, option: AlwaysAllowAccess, value: "true"}
|
||||
- {section: Browser, option: AlwaysAllowUpdate, value: "true"}
|
||||
|
|
Loading…
Reference in a new issue