aboutsummaryrefslogtreecommitdiff
path: root/src/nix/ping-store.cc
blob: 62b645b066664b2650a1b0fcee04d48aec40a673 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#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
    {
        store->connect();
    }
};

static auto rCmdPingStore = registerCommand2<CmdPingStore>({"store", "ping"});