nix-super/src/nix/ping-store.cc

31 lines
644 B
C++
Raw Normal View History

#include "command.hh"
#include "shared.hh"
#include "store-api.hh"
using namespace nix;
struct CmdPingStore : StoreCommand
{
std::string description() override
{
2020-12-09 18:55:59 +02:00
return "test whether a store can be accessed";
}
2020-12-09 18:55:59 +02:00
std::string doc() override
{
2020-12-09 18:55:59 +02:00
return
#include "ping-store.md"
;
}
void run(ref<Store> store) override
{
notice("Store URL: %s", store->getUri());
store->connect();
if (auto version = store->getVersion())
notice("Version: %s", *version);
}
};
static auto rCmdPingStore = registerCommand2<CmdPingStore>({"store", "ping"});