如果你需要在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中运行该命令:
原文链接:https://www.f2er.com/ubuntu/347394.htmlcommand: bash -c "ifdown eth0 && ifup eth0"
您还可以使用shell模块:
shell: "ifdown eth0 && ifup eth0"