| # 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)" |