云服务器linux设置拦截reboot命令

[复制链接] |主动推送
查看36 | 回复0 | 2024-9-11 15:07:04 | 显示全部楼层 |阅读模式
Linux 拦截 reboot 命令
拦截用户输入的 reboot 命令,防止手滑输入成reboot导致服务器重启




把下面代码写入到 /etc/profile 内,并执行一次 source /etc/profile


# 自定义一个 func
sendya_reboot() {        while true        do        echo -n "You really want to restart the server? (yes/no):"        read crm        if [ "$crm"x = "yes"x ]; then                echo "rebooting"                \reboot        else                break        fi        break        done}# 别名alias reboot='sendya_reboot'


111959yo5vux87zrujyyr2.png
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则