forked from sig_core/toolkit
12 lines
283 B
Bash
12 lines
283 B
Bash
|
#!/bin/bash
|
||
|
r_log "rootfiles" "Test that rootfiles exist"
|
||
|
for y in .bashrc .bash_profile .bashrc .tcshrc .cshrc; do
|
||
|
r_log "rootfiles" "Checking for $y"
|
||
|
if [ ! -e "/root/${y}" ]; then
|
||
|
r_log "rootfiles" "$y doesn't exist"
|
||
|
r_checkExitStatus 1
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
r_checkExitStatus 0
|