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
[reload] | |
command:/bin/sh /usr/local/etc/unbound/blacklist-update.sh | |
parameter: | |
type:script_output | |
message: Unbound Blacklist Update | |
description: Centralized Blacklist Update for Unbound DNS Service |
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
mkfs.vfat -n BOOT /dev/sda3 | |
mkfs.btrfs -L root /dev/sda1 | |
cryptsetup luksFormat /dev/sda1 | |
# Enter the Password. | |
cryptsetup luksOpen /dev/sda1 enc-pv | |
# After Opening the Disk, Open Gparted and Format /dev/sda1 to btrfs for the btrfs logic block. |
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
--- | |
## References | |
# - https://stackoverflow.com/questions/61598412/regex-after-matched-string-and-white-space-in-ansible | |
# - https://stackoverflow.com/questions/69475907/extract-a-substring-from-a-variable-in-ansible | |
## Example of use of filter regex_search | |
- hosts: localhost | |
remote_user: root |