1、service.available
service.available:如果服务可用则返回True,否则返回False。
1
2
3
4
5
6
7
8
9
10
|
[root@salt-master ~]
# salt '*' service.available sshd
salt-minion02.contoso.com:
True
salt-minion01.contoso.com:
True
[root@salt-master ~]
# salt '*' service.available httpd
salt-minion01.contoso.com:
False
salt-minion02.contoso.com:
False
|
2、service.missing
service.missing:如果服务不可用则返回True,否则返回False。
1
2
3
4
5
6
|
[root@salt-master ~]
# salt 'salt-minion01.contoso.com' service.missing httpd
salt-minion01.contoso.com:
True
[root@salt-master ~]
# salt 'salt-minion01.contoso.com' service.missing sshd
salt-minion01.contoso.com:
False
|
3、service.disable
service.disable:禁止指定服务开机启动。
1
2
3
4
5
6
7
8
9
10
|
[root@salt-master ~]
# salt 'salt-minion01.contoso.com' cmd.run 'chkconfig --list|grep crond'
salt-minion01.contoso.com:
crond 0:off1:off2:on3:on4:on5:on6:off
[root@salt-master ~]
# salt 'salt-minion01.contoso.com' service.disable crond
salt-minion01.contoso.com:
True
[root@salt-master ~]
#
[root@salt-master ~]
# salt 'salt-minion01.contoso.com' cmd.run 'chkconfig --list|grep crond'
salt-minion01.contoso.com:
crond 0:off1:off2:off3:off4:off5:off6:off
|
4、service.disabled
service.disabled:检查指定服务是否被禁止开机启动,如果被禁止开机启动,则返回True,否则返回False。
1
2
3
4
5
6
|
[root@salt-master ~]
# salt 'salt-minion01.contoso.com' service.disabled crond
salt-minion01.contoso.com:
True
[root@salt-master ~]
# salt 'salt-minion01.contoso.com' service.disabled network
salt-minion01.contoso.com:
False
|
5、service.enable
service.enable:启用指定服务开机启动。
1
2
3
|
[root@salt-master ~]
# salt 'salt-minion01.contoso.com' service.enable network
salt-minion01.contoso.com:
True
|
6、service.enabled
service.enabled:检查指定服务是否被启用开机启动,如果已启用开机启动,则返回True,否则返回False。
1
2
3
4
5
6
|
[root@salt-master ~]
# salt 'salt-minion01.contoso.com' service.enabled network
salt-minion01.contoso.com:
True
[root@salt-master ~]
# salt 'salt-minion01.contoso.com' service.enabled crond
salt-minion01.contoso.com:
False
|
7、service.start
service.start:启动指定服务。
1
2
3
|
[root@salt-master ~]
# salt 'salt-minion01.contoso.com' service.start sshd
salt-minion01.contoso.com:
True
|
8、service.stop
service.stop:停止指定服务。
1
2
3
|
[root@salt-master ~]
# salt 'salt-minion01.contoso.com' service.stop crond
salt-minion01.contoso.com:
True
|
9、service.status
service.status:返回指定服务的运行状态,该模块会返回一个布尔值,如果服务已停止,则返回False;如果服务已启动,则返回True。
1
2
3
4
5
6
|
[root@salt-master ~]
# salt 'salt-minion01.contoso.com' service.status crond
salt-minion01.contoso.com:
False
[root@salt-master ~]
# salt 'salt-minion01.contoso.com' service.status network
salt-minion01.contoso.com:
True
|
10、service.restart
service.restart:重新启用指定服务。
1
2
3
|
[root@salt-master ~]
# salt 'salt-minion01.contoso.com' service.restart crond
salt-minion01.contoso.com:
True
|
11、service.reload
service.reload:重新加载指定服务。
1
2
3
4
5
6
|
[root@salt-master ~]
# salt 'salt-minion01.contoso.com' service.reload crond
salt-minion01.contoso.com:
True
[root@salt-master ~]
# salt 'salt-minion01.contoso.com' service.reload network
salt-minion01.contoso.com:
True
|
12、cron.list_tab
cron.list_tab:返回指定用户的定时任务内容。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
[root@salt-master ~]
# salt '*' cron.list_tab root
salt-minion02.contoso.com:
----------
crons:
env
:
pre:
- 0 * * * *
/usr/sbin/ntpdate
210.72.145.44 64.147.116.229
time
.nist.gov >
/dev/null
2>&1
special:
salt-minion01.contoso.com:
----------
crons:
env
:
pre:
- 0 * * * *
/usr/sbin/ntpdate
210.72.145.44 64.147.116.229
time
.nist.gov
special:
|
13、cron.ls
cron.ls:返回指定用户的定时任务内容。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
[root@salt-master ~]
# salt '*' cron.ls root
salt-minion01.contoso.com:
----------
crons:
env
:
pre:
- 0 * * * *
/usr/sbin/ntpdate
210.72.145.44 64.147.116.229
time
.nist.gov
special:
salt-minion02.contoso.com:
----------
crons:
env
:
pre:
- 0 * * * *
/usr/sbin/ntpdate
210.72.145.44 64.147.116.229
time
.nist.gov >
/dev/null
2>&1
special:
|
14、cron.raw_cron
cron.raw_cron:返回给定用户的定时任务内容,不同于cron.list_tab和cron.ls的是,返回的结果只有crond文件中的内容,而其他2个模块还会返回crons、env等信息。
1
2
3
4
5
|
[root@salt-master ~]
# salt '*' cron.raw_cron root
salt-minion02.contoso.com:
0 * * * *
/usr/sbin/ntpdate
210.72.145.44 64.147.116.229
time
.nist.gov >
/dev/null
2>&1
salt-minion01.contoso.com:
0 * * * *
/usr/sbin/ntpdate
210.72.145.44 64.147.116.229
time
.nist.gov
|
15、cron.set_job
cron.set_job:给指定用户添加一个定时任务。通过该命令添加的定时任务,会在定时任务前添加“# Lines below here are managed by Salt, do not edit”一行。
1
2
3
4
5
6
7
8
|
[root@salt-master ~]
# salt 'salt-minion01.contoso.com' cron.set_job root '0' '*' '*' '*' '*' 'cd /tmp; echo $(date +%F) >> a.txt'
salt-minion01.contoso.com:
new
[root@salt-master ~]
# salt 'salt-minion01.contoso.com' cron.raw_cron root
salt-minion01.contoso.com:
0 * * * *
/usr/sbin/ntpdate
210.72.145.44 64.147.116.229
time
.nist.gov
# Lines below here are managed by Salt, do not edit
0 * * * *
cd
/tmp
;
echo
$(
date
+%F) >> a.txt
|
16、cron.rm_job
cron.rm_job:移除指定用户的定时任务。注意:该命令只能移除通过cron.set_job添加的定时任务,但不能移除使用crontab命令添加的定时任务。
1
2
3
4
5
6
7
|
[root@salt-master ~]
# salt 'salt-minion01.contoso.com' cron.rm_job root 'cd /tmp; echo $(date +%F) >> a.txt'
salt-minion01.contoso.com:
removed
[root@salt-master ~]
# salt 'salt-minion01.contoso.com' cron.raw_cron root
salt-minion01.contoso.com:
0 * * * *
/usr/sbin/ntpdate
210.72.145.44 64.147.116.229
time
.nist.gov
# Lines below here are managed by Salt, do not edit
|
17、cron.rm
cron.rm:移除指定用户的定时任务。注意:该命令只能移除通过cron.set_job添加的定时任务,但不能移除使用crontab命令添加的定时任务。
1
2
3
4
5
6
7
|
[root@salt-master ~]
# salt 'salt-minion01.contoso.com' cron.rm root 'cd /tmp; echo $(date +%F) >> a.txt'
salt-minion01.contoso.com:
removed
[root@salt-master ~]
# salt 'salt-minion01.contoso.com' cron.raw_cron root
salt-minion01.contoso.com:
0 * * * *
/usr/sbin/ntpdate
210.72.145.44 64.147.116.229
time
.nist.gov
# Lines below here are managed by Salt, do not edit
|