/// <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."); } }
public bool Active() { return(_parser.Active()); }
public bool Active() => _parser.Active();