blob: 863f10539f02bf58be114df801ea625051da88e7 [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: [
"--secure",
"--backing_file",
"/data/stash_secure.store",
],
},
capabilities: [
{ protocol: "fuchsia.stash.SecureStore" },
],
use: [
{
storage: "data",
path: "/data",
},
],
expose: [
{
protocol: "fuchsia.stash.SecureStore",
from: "self",
},
],
}