Files
svr/install/arch.sh
T
journal_froid 1d4435089f rebasing .git
2026-01-23 09:59:19 +01:00

27 lines
388 B
Bash
Executable File

#!/usr/bin/bash
if [[ "$EUID" -ne "0" ]]; then
echo "This script must be run as root"
exit 1
fi
if [ $# -ne 1 ] ; then
echo usage $0 MACHINE_DIR
exit 0
fi
MACHINE_DIR=${1:-"svr"}
bash tree_cpy.sh $MACHINE_DIR/usr
source /home/.bashrc
bash config.sh
source /home/.bashrc
#bash python.sh
#source /home/.bashrc
bash chmod.sh
bash pacman.sh
source /home/.bashrc
bash network.sh