blob: f7ddd7c7c52593129131259eaf5f60c0be1a0ce6 [file] [log] [blame]
// Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
{
include: [
"sdk/lib/diagnostics/inspect/client.shard.cml",
"sdk/lib/diagnostics/syslog/client.shard.cml",
],
program: {
runner: "elf",
binary: "bin/stash",
args: [
"--secondary_store",
"--backing_file",
"/data/stash2.store",
],
},
capabilities: [
{ protocol: "fuchsia.stash.Store2" },
],
use: [
{
storage: "data",
path: "/data",
},
],
expose: [
{
protocol: "fuchsia.stash.Store2",
from: "self",
},
],
}