forked from freifunk-berlin/bbb-configs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ansible: move away from limited /tmp ramdisk, and clean up dir structure
- Loading branch information
Showing
10 changed files
with
57 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
*/__pycache__/ | ||
.vscode/ | ||
venv/ | ||
.env | ||
.env | ||
tmp/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
--- | ||
- name: Set permission for dropbear directory | ||
file: | ||
path: "{{ config_path }}/etc/dropbear/" | ||
path: "{{ configs_dir }}/etc/dropbear/" | ||
mode: "700" | ||
|
||
- name: Set permission for authorized_keys | ||
file: | ||
path: "{{ config_path }}/etc/dropbear/authorized_keys" | ||
path: "{{ configs_dir }}/etc/dropbear/authorized_keys" | ||
mode: "600" | ||
|
||
- name: Set permission for replace_secrets script | ||
file: | ||
path: "{{ config_path }}/etc/init.d/replace_secrets" | ||
path: "{{ configs_dir }}/etc/init.d/replace_secrets" | ||
mode: "755" | ||
when: role != "gateway" | ||
|
||
- name: Set permission for force_mcast_mld_reports.sh script | ||
file: | ||
path: "{{ config_path }}/etc/force_mcast_mld_reports.sh" | ||
path: "{{ configs_dir }}/etc/force_mcast_mld_reports.sh" | ||
mode: "755" | ||
when: role in ['corerouter', 'gateway'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters