21 خطوط
446 B
Bash
Executable File
21 خطوط
446 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright © Advanced Micro Devices, Inc., or its affiliates.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
# Note:
|
|
# * This script should reside in the artifacts directory
|
|
# when executed.
|
|
# * This script may require root privilege
|
|
|
|
if [ $# -lt 1 ]; then
|
|
echo "Need to specify a installation root directory (e.g., /etc/rdc)"
|
|
exit 1
|
|
fi
|
|
|
|
INSTALL_DIR=$1
|
|
mkdir -p $INSTALL_DIR
|
|
cp -R client $INSTALL_DIR
|
|
chown -R rdc:rdc $INSTALL_DIR/client
|
|
|