We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3f3207 commit 7d1641eCopy full SHA for 7d1641e
bin/v-list-sys-config
@@ -268,11 +268,13 @@ csv_list() {
268
# Action #
269
#----------------------------------------------------------#
270
271
-version=$(named -v | awk 'NR==1{print $2}')
272
-if version_ge '9.16.18' $version; then
273
- SUPPORT_DNSSEC="no"
274
-else
275
- SUPPORT_DNSSEC="yes"
+if [ -n "$DNS_SYSTEM" ]; then
+ version=$(named -v | awk 'NR==1{print $2}')
+ if version_ge '9.16.18' $version; then
+ SUPPORT_DNSSEC="no"
+ else
276
+ SUPPORT_DNSSEC="yes"
277
+ fi
278
fi
279
280
# Listing data
0 commit comments