11 lines
217 B
Bash
Executable File
11 lines
217 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
|
|
if [[ $UID != "0" ]]; then
|
|
echo "ERROR: You must run this script as root!"
|
|
exit 1
|
|
fi
|
|
|
|
cp bashrc /etc/bashrc && chmod 644 /etc/bashrc
|
|
cp bashrc.cust /etc/bashrc.cust && chmod 644 /etc/bashrc.cust |