gpt4 book ai didi

ubuntu - Ansible:在 Ubuntu 上重启网络

转载 作者:太空宇宙 更新时间:2023-11-03 16:45:53 24 4
gpt4 key购买 nike

如果您需要在 Ubuntu 服务器(在我的例子中是 12.04)上播放时重新启动网络,您不能使用 service:

# 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"

关于ubuntu - Ansible:在 Ubuntu 上重启网络,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28715003/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com