我在两个Debian机器(Debian 8 - Jessy)上有一个salt-master(0.17.5)和一个salt-minion(0.17.5)。
当我发起这个命令salt '*' cp.get_file salt://file /file
时,我对我的盐奴隶有这个警告:
[WARNING] /usr/lib/.../minion.py:594: Deprecation Warning: Master pub message signing is disabled but we received a signature for this message. Most likely this means that your masters and minions are not the same version...
为什么我会收到此警告?
答案 0 :(得分:0)
我已经解决了我的问题!
必须使用salt-cp '*' /file/src.txt /file/dest.txt
代替salt '*' cp.get_file salt://file/src.txt /file/dest.txt
。