blob: d06432cb3fa8d61232a105c5a45e7b36d3ea7089 [file] [log] [blame]
// Copyright 2018 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.
use fidl_fuchsia_sys2 as fuchsia_sys2;
use fuchsia_component::client as component_client;
use tracing::error;
#[fuchsia::main(logging_tags = ["system_controller_consumer"])]
async fn main() -> Result<(), anyhow::Error> {
let shutdown = component_client::connect_to_protocol::<fuchsia_sys2::SystemControllerMarker>()
.expect("Failed to connect to fuchsia.sys2.SystemController");
match shutdown.shutdown().await {
Ok(()) => Ok(()),
Err(err) => {
error!(?err, "Failure calling shutdown");
Err(err.into())
}
}
}