/dev/null_function syst">
当前位置:   article > 正文

linux 简易维护脚本 使用functions函数实现_function systemctl

function systemctl
#!/bin/bash
. /etc/init.d/functions
disable_selinux(){
        sed -i.bak 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config
        action "SElinux已禁用,重新启动后才可生效"
}
disable_firewall(){
        systemctl disable --now firewalld &> /dev/null
        action "防火墙已禁用"
}
set_ps1(){
        echo "PS1='\[\e[1;35m\][\u@\h \W]\\$\[\e[0m\]'" > /etc/profile.d/reset.sh
    action "提示符已修改成功,请重新登录生效"
}
set_eth(){
    sed -i.bak '/GRUB_CMDLINE_LINUX=/s#"$# net.ifnames=0"#' /etc/default/grub
    grub2-mkconfig -o /boot/grub2/grub.cfg &> /dev/null
    action "网络名称已修改成功,请重新启动才能生效"
}
PS3="请选择相应的编号(1-6):"
MENU="
禁用SELinux
关闭防火墙
修改提示符
修改网卡名称
以上全实现
退出
"
select menu in $MENU;do
case $REPLY in
1)
        disable_selinux
    ;;
2)
        disable_firewall
    ;;
3)
    set_ps1
        ;;
4)
    set_eth
        ;;

5)
    disable_selinux
        disable_firewall
        set_ps1
        set_eth
    ;;
6)
    break
    ;;
*)
    echo "请输入正确的数字"
esac
done
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号