| // 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", |
| }, |
| ], |
| } |