博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ansible-playbook-常用
阅读量:5304 次
发布时间:2019-06-14

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

创建软链:file:

- name: create link

hosts: "{
{hosts_ip}}"
tasks:
- name: create link

file: src={

{src_path}} dest={
{dest_link_path}} state=link

 

运行脚本:

 

- name: restart jetty

hosts: "{
{hosts_ip}}"
tasks:
- name: restart jetty
shell: "{
{shell_message}}"
register: ret

- name: display variable

debug: msg="{
{ ret.stdout_lines }}"

 

重启jt或者java:shell:

- name: restart jetty

hosts: "{
{hosts_ip}}"
tasks:
- name: restart jetty
shell: "set -m && /opt/bin/jt 2"
register: ret

- name: display variable

debug: msg="{
{ ret.stdout_lines }}"

 

同步目录synchronize 和建目录:

 

- name: rsync learning

hosts: "{
{hosts_ip}}"
tasks:
- name: mkdir dir
file: path="{
{dest_path}}" state=directory mode=0755 owner=dev

- name: rsync server dir

synchronize: src="{
{src_path}}" dest="{
{dest_path}}" recursive=yes rsync_opts=--exclude-from={
{src_path}}/exclude.txt
register: ret
- name: display variable
debug: msg="{
{ ret.stdout_lines }}"

 

转载于:https://www.cnblogs.com/Qing-840/p/9264160.html

你可能感兴趣的文章
一个新的开始,fightting!
查看>>
idc交叉引用
查看>>
函数的重载
查看>>
批量将.txt编码格式转化为utf8
查看>>
redis 安装启动及设置密码<windows>
查看>>
会话跟踪技术Cookieless
查看>>
读[SAP+ERP财务与控制模块配置]
查看>>
debian8 Apache 更改根目录
查看>>
JQuery 的一个轻量级 Guid 字符串拓展插件.
查看>>
觉得好烦啊。我一定是脑子坏了
查看>>
9-4
查看>>
在线安装eclipse中html/jsp/xml editor插件(很可靠)
查看>>
discuz函数quote
查看>>
Xdebug日志文件不显示
查看>>
PHP大小写:函数名和类名不区分,变量名区分
查看>>
php 跨域请求
查看>>
八大排序算法
查看>>
day57 手写socket、路由系统、响应一个动态内容、链接数据库、django配置、及应用、DNS服务器...
查看>>
CentOS7 下 yum 安装 Docker CE
查看>>
SDUT 识别浮点常量问题 编译原理作业
查看>>