mirror of
https://github.com/trailofbits/algo.git
synced 2025-09-02 18:13:13 +02:00
Use instead of legacy REF: https://github.com/koalaman/shellcheck/wiki/SC2006
This commit is contained in:
parent
8366e0c85f
commit
3e3c7ad4ac
1 changed files with 2 additions and 2 deletions
|
@ -1,8 +1,8 @@
|
|||
#!/bin/sh
|
||||
# Block ads, malware, etc..
|
||||
|
||||
TEMP=`mktemp`
|
||||
TEMP_SORTED=`mktemp`
|
||||
TEMP="$(mktemp)"
|
||||
TEMP_SORTED="$(mktemp)"
|
||||
DNSMASQ_WHITELIST="/var/lib/dnsmasq/white.list"
|
||||
DNSMASQ_BLACKLIST="/var/lib/dnsmasq/black.list"
|
||||
DNSMASQ_BLOCKHOSTS="{{ config_prefix|default('/') }}etc/dnsmasq.d/block.hosts.conf"
|
||||
|
|
Loading…
Add table
Reference in a new issue