diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-11-02 17:39:21 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-11-02 17:39:21 -0500 |
commit | ff2044f3ce53f7c2bb7b34588adad0490bd3a808 (patch) | |
tree | ae165d60c9cb0572f1359084bbdaba83d655d545 | |
parent | df947cac2d545326fd99cc0c8ceea9d583a6f06a (diff) | |
download | horizon-ff2044f3ce53f7c2bb7b34588adad0490bd3a808.tar.gz horizon-ff2044f3ce53f7c2bb7b34588adad0490bd3a808.tar.bz2 horizon-ff2044f3ce53f7c2bb7b34588adad0490bd3a808.tar.xz horizon-ff2044f3ce53f7c2bb7b34588adad0490bd3a808.zip |
hscript: Hostname::execute: dns_domain_lo is a variable
-rw-r--r-- | hscript/meta.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hscript/meta.cc b/hscript/meta.cc index 1124988..4cb25bb 100644 --- a/hscript/meta.cc +++ b/hscript/meta.cc @@ -154,7 +154,7 @@ bool Hostname::execute(ScriptOptions opts) const { "writing"); return false; } - net_conf_f << "dns_domain_lo\"" << domain << "\"" << std::endl; + net_conf_f << "dns_domain_lo=\"" << domain << "\"" << std::endl; } #endif /* HAS_INSTALL_ENV */ } |