forked from stove/dataset
10 lines
150 B
Text
10 lines
150 B
Text
|
#!/bin/bash
|
||
|
|
||
|
set -xe
|
||
|
|
||
|
[ -e /tmp/proxy.sh ] && . /tmp/proxy.sh
|
||
|
microdnf -y --nodocs --noplugins install unbound
|
||
|
make_volatile /var/lib/unbound
|
||
|
|
||
|
exit 0
|