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
--- | |
############################################################################# | |
# DNS Updater | |
############################################################################# | |
sensor: | |
- platform: rest | |
resource: "https://api.ipify.org/" | |
name: "external_ip" | |
scan_interval: 600 |
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
# Enalbe encryption for pool | |
zpool set feature@encryption=enabled poolName | |
# Create a encryption key | |
dd if=/dev/random bs=64 count=1 of=/.zfs-data.key | |
# Set the approprieate permission | |
chmod 400 /.zfs-data.key | |
# Make the key immutable |
OlderNewer