示例#1
0
 /// <summary>
 /// Show a warning when the user appears to be trying to
 /// use command line arguments in combination with a renew
 /// command.
 /// </summary>
 internal void WarnAboutRenewalArguments()
 {
     if (_arguments.Active())
     {
         _log.Warning("You have specified command line options for plugins. " +
                      "Note that these only affect new certificates, but NOT existing renewals. " +
                      "To change settings, re-create (overwrite) the renewal.");
     }
 }
示例#2
0
 public bool Active()
 {
     return(_parser.Active());
 }
示例#3
0
 public bool Active() => _parser.Active();