2026-01-27 09:06:40 -05:00
|
|
|
// SPDX-FileCopyrightText: 2012 Icinga GmbH <https://icinga.com>
|
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-08-23 06:12:43 -04:00
|
|
|
|
|
|
|
|
#ifndef CASIGNCOMMAND_H
|
|
|
|
|
#define CASIGNCOMMAND_H
|
|
|
|
|
|
|
|
|
|
#include "cli/clicommand.hpp"
|
|
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The "ca sign" command.
|
|
|
|
|
*
|
|
|
|
|
* @ingroup cli
|
|
|
|
|
*/
|
2018-01-04 00:11:04 -05:00
|
|
|
class CASignCommand final : public CLICommand
|
2017-08-23 06:12:43 -04:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
DECLARE_PTR_TYPEDEFS(CASignCommand);
|
|
|
|
|
|
2018-01-03 23:12:56 -05:00
|
|
|
String GetDescription() const override;
|
|
|
|
|
String GetShortDescription() const override;
|
|
|
|
|
int GetMinArguments() const override;
|
|
|
|
|
ImpersonationLevel GetImpersonationLevel() const override;
|
|
|
|
|
int Run(const boost::program_options::variables_map& vm, const std::vector<std::string>& ap) const override;
|
2017-08-23 06:12:43 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* CASIGNCOMMAND_H */
|