blob: b53595353bbc2f6bd37623c7bdc6473836c5afe6 [file]
# Copyright 2021 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
#!/bin/bash
set -eu
# Copy binary into /usr/sbin and chmod 0755
binary="$1"
cp $binary /usr/sbin
chmod 0755 /usr/sbin/"$(basename -- $binary)"