blob: 14be30ace1fd2d5acbf29c9e7804697d231dfa62 [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: [ "syslog/client.shard.cml" ],
program: {
runner: "elf",
binary: "bin/pkg_server",
// Note: Manifests including this shard must provide args:
// --tls-certificate-chain-path
// --tls-private-key-path
// --repository-path
},
capabilities: [
{ protocol: "test.security.pkg.PackageServer" },
],
use: [
// TODO: Needed anymore?
{
protocol: "fuchsia.net.name.Lookup",
from: "parent",
},
{
protocol: "fuchsia.posix.socket.Provider",
from: "parent",
},
],
expose: [
{
protocol: "test.security.pkg.PackageServer",
from: "self",
},
],
}