apt install sysv-rc-conf
root@DESKTOP-1F93OD2:/mnt/e/win10_ubuntu_dir/ansible# cat /usr/sbin/chkconfig
#!/usr/bin/perl
use strict;
#use warnings;
my param1 = ARGV[0];
my param2 = ARGV[1];
if ( defined $param2 ){
if ( $param1 =~ /list/ ){
system("sysv-rc-conf --list $param2");
}elsif( $param2 eq 'on' ){
system("sysv-rc-conf --level 2345 $param1 on");
system("sysv-rc-conf --list $param1");
}elsif( $param2 eq 'off' ){
system("sysv-rc-conf --level 2345 $param1 off");
system("sysv-rc-conf --list $param1");
}else{
print("Usage: chkconfig < option > | --list | [ service_name [ command < on | off > ] ]\n");
exit(1);
}
}else{
system("sysv-rc-conf --list $param2");
}
chmod 755 /usr/sbin/chkconfig
root@DESKTOP-1F93OD2:/mnt/e/win10_ubuntu_dir/ansible# chkconfig --list apache2
apache2 0:off 1:off 2:on 3:on 4:on 5:on 6:off
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于