mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
35dbdbedd4
Fixes #5952.
30 lines
644 B
C++
30 lines
644 B
C++
#include "command.hh"
|
|
#include "shared.hh"
|
|
#include "store-api.hh"
|
|
|
|
using namespace nix;
|
|
|
|
struct CmdPingStore : StoreCommand
|
|
{
|
|
std::string description() override
|
|
{
|
|
return "test whether a store can be accessed";
|
|
}
|
|
|
|
std::string doc() override
|
|
{
|
|
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"});
|