- 论坛徽章:
- 0
|
具体情况如下:
公司写一个控制sudo su - oracle 得脚本。
oracle 得 .profile:
v_exec_user=`who am i|awk '{print $1}'`
echo "Checking for the Execute user"
echo $v_exec_user
echo "Checked the user "
if [ "$v_exec_user" != "" ]
then
echo "Running Script with Terminal"
# this is the real script to control access:
#it return 0 is not matching, return 1 if matching
./validate_remedy.ksh
if [ $? -eq 0 ]
then
echo "You are not Oracle"
exit;
else
echo "You are Oracle"
#script /tmp/$v_exec_user.log
fi
else
echo "Running Script no Terminal"
fi
validate_remedy.ksh
validate_remedy()
{
#for control+C being typed
unset ctrl_c
trap 'ctrl_c=true' INT
# Perform whatever task needs to be done here
let cnt=3
while [ $cnt -gt 0 ]
do
echo "Enter Approved Remedy Ticket: \c"
read remedy_no
if [ -z $remedy_no ]
then
let cnt=$cnt-1
echo " No input .."
#verify whether ticket matches the condition
else
echo "Your input is: $remedy_no"
echo "Verifying... ..."
echo
# come conditions here to verify
#if good
exit 1
else
exit 0
# If ctrl-c is pressed, do whatever action is necessary here
if [ $ctrl_c ]
then
echo "This action is not allowed, dare try one more time?"
let cnt=$cnt+1
#################################
#here is the question part:
#exit 0 is not executed if type ctrl+c
#############################
exit 0 fi
done
如果type ctrl+c, 可以控制user用warning message并退出。但是exit 0 并不执行。这样用户还是可以sudo su -oracle
请问有什么好办法嘛? |
|