8 lines
128 B
Bash
8 lines
128 B
Bash
#!/bin/sh
|
|
|
|
SHELL="/bin/dash"
|
|
|
|
if grep "${SHELL}" "$BPM_ROOT"/etc/shells; then
|
|
sed -i "\|${SHELL}|d" "$BPM_ROOT"/etc/shells
|
|
fi
|