--
You received this message because you are subscribed to the Google Groups "Salt-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to salt-users+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Thank you for confirming that there are no necessary steps before modifying /srv/salt, but is this also true for orchestration/reactor?
In an immediate reaction to the problem we changed three things:
We modified /srv/salt with an orchestrated reactor, which Seth House was so kind to write as a a working example
In Seth' code, though, I changed
{% set db_file = '/tmp/job_events.sqlite3' %}
to
{% set db_file = '/srv/salt/job_events.sqlite3' %}
and added (in the orchestration sls) the creation of files in /srv/salt
To our great horror we observed many hundreds of ^@ characters within the file names of mtime_map.
As soon as we put the modifications outside /srv/salt, the repeated characters ^@ (character 0) disappeared.
Unfortunately, this is no long term solution for us. In the near future we will need to modify /srv/salt from orchestration/reactor:
one minion regularly sends data (~ 60 byte) to the master, the master stores it and sends it to all other minions.
The ideal format for the data is a directory of small files, which is kept in sync between the master and the minions.
Is there a way to do that?
You received this message because you are subscribed to a topic in the Google Groups "Salt-users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/salt-users/UhlhMZLxsqw/unsubscribe.
To unsubscribe from this group and all its topics, send an email to salt-users+...@googlegroups.com.
Set up another salt-master on another host. I am using a similar pattern with a runner updating x509 CRL files under /srv/salt without the need for stopping the master. Also, what os/distribution are you using for your master? I'm using Cent7.
-S
(sorry.. incomplete thought there)
set up another master with some. test minions to see if it might not be an issue with a corrupted 3rd party library.
-S