Skip to content

Commit

Permalink
tls: set TlsEnable to true by default
Browse files Browse the repository at this point in the history
  • Loading branch information
franku committed Nov 20, 2018
1 parent de2a5b4 commit 011c0f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/lib/parse_conf.h
Expand Up @@ -75,7 +75,7 @@ struct s_kw {
#define TLS_COMMON_CONFIG(res) \
{ "TlsAuthenticate", CFG_TYPE_BOOL, ITEM(res.authenticate_), 0, CFG_ITEM_DEFAULT, "false", NULL, \
"Use TLS only to authenticate, not for encryption." }, \
{ "TlsEnable", CFG_TYPE_BOOL, ITEM(res.enable_), 0, CFG_ITEM_DEFAULT, "false", NULL, \
{ "TlsEnable", CFG_TYPE_BOOL, ITEM(res.enable_), 0, CFG_ITEM_DEFAULT, "true", NULL, \
"Enable TLS support." }, \
{ "TlsRequire", CFG_TYPE_BOOL, ITEM(res.require_), 0, CFG_ITEM_DEFAULT, "false", NULL, \
"Without setting this to yes, Bareos can fall back to use unencrypted connections. " \
Expand Down

0 comments on commit 011c0f9

Please sign in to comment.