博客
关于我
puppet确保程序运行
阅读量:599 次
发布时间:2019-03-12

本文共 544 字,大约阅读时间需要 1 分钟。

exec {
'keep-nginx-running' : user => 'root', unless => 'ps -x | grep nginx|grep -v grep', command => 'systemctl start nginx.service', path => '/usr/bin:/usr/sbin:/sbin:/bin',
}
```html
exec {
'keep-nginx-running' : user => 'root', unless => 'ps -x | grep nginx|grep -v grep', command => 'systemctl start nginx.service', path => '/usr/bin:/usr/sbin:/sbin:/bin',
}

转载地址:http://ivbxz.baihongyu.com/

你可能感兴趣的文章
Objective-C实现double factorial iterative双阶乘迭代算法(附完整源码)
查看>>
Objective-C实现double factorial recursive双阶乘递归算法(附完整源码)
查看>>
Objective-C实现double hash双哈希算法(附完整源码)
查看>>
Objective-C实现double linear search recursion双线性搜索递归算法(附完整源码)
查看>>
Objective-C实现double linear search 双线性搜索算法(附完整源码)
查看>>
Objective-C实现double sort双重排序算法(附完整源码)
查看>>
Objective-C实现DoublyLinkedList双链表的算法(附完整源码)
查看>>
Objective-C实现DoublyLinkedList双链表算法(附完整源码)
查看>>
Objective-C实现DPLL(davisb putnamb logemannb loveland)算法(附完整源码)
查看>>
Objective-C实现DWT离散小波变换(附完整源码)
查看>>
Objective-C实现Edmonds-Karp算法(附完整源码)
查看>>
Objective-C实现EEMD算法(附完整源码)
查看>>
Objective-C实现elgamal 密钥生成器算法(附完整源码)
查看>>