Ansible:在Ubuntu上重启网络

前端之家收集整理的这篇文章主要介绍了Ansible:在Ubuntu上重启网络前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果你需要在ubuntu服务器(在我的情况下为12.04)的游戏过程中重新启动网络,你就无法使用服务:
# service networking restart 
stop: Job Failed while stopping
start: Job is already running: networking

以下是在命令行上工作,但使用Ansible(1.8.4)它会锁定你:

command: ifdown eth0 && ifup eth0

ifdown取消了界面,但是ifup没有运行

如何重启界面?

解决方案是在新shell中运行该命令:
command: bash -c "ifdown eth0 && ifup eth0"

您还可以使用shell模块:

shell: "ifdown eth0 && ifup eth0"
原文链接:https://www.f2er.com/ubuntu/347394.html

猜你在找的Ubuntu相关文章