免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1962 | 回复: 4
打印 上一主题 下一主题

请大家给看看这个棘手问题,关于ctrl+c 得 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-09-08 12:09 |只看该作者 |倒序浏览
具体情况如下:
公司写一个控制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

请问有什么好办法嘛?

论坛徽章:
0
2 [报告]
发表于 2007-09-08 12:34 |只看该作者
这种需求应当去修改当前用户的sudo权限,而非画蛇添足写个脚本来控制。
一定要用脚本的话,kill起终端的bash进程

论坛徽章:
0
3 [报告]
发表于 2007-09-08 12:54 |只看该作者

多谢回复

现在就是给大家sudo 权限,但是用其他手段控制进入。

那个kill 方式有点太brutal 了吧。。。

论坛徽章:
0
4 [报告]
发表于 2007-09-10 11:10 |只看该作者

up 一下

谢谢

论坛徽章:
1
水瓶座
日期:2014-03-20 18:21:14
5 [报告]
发表于 2007-09-10 14:45 |只看该作者
shell无法截获ctl-c以及任何控制序列
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP