gpt4 book ai didi

mysql - 使用 salt 将 mysql 转储文件导入到 vagrant

转载 作者:行者123 更新时间:2023-11-29 21:48:58 25 4
gpt4 key购买 nike

我正在使用带有 salt 的 vagrant 来设置开发环境,但我找不到在 salt 配置中导入 mysql 脚本的方法

最佳答案

我重新使用了 this script 中的示例来解决它。应用 SQL 后,将使用 touch 创建一个标记文件,稍后使用 test 检查该文件:

{% for file in [
'/usr/share/zabbix-server-mysql/salt-provided-schema.sql',
'/usr/share/zabbix-server-mysql/salt-provided-images.sql',
'/usr/share/zabbix-server-mysql/salt-provided-data.sql'
] %}
{{ file }}:
file:
- managed
- makedirs: True
- source: {{ files_switch('zabbix', [ file ]) }}
cmd:
- run
- name: /usr/bin/mysql -h {{ dbhost }} -u {{ dbuser }} --password={{ dbpass }} {{ dbname }} < {{ file }} && touch {{ file }}.applied
- unless: test -f {{ file }}.applied
- require:
- file: {{ file }}
- pkg: mysql-client
{% endfor %}

关于mysql - 使用 salt 将 mysql 转储文件导入到 vagrant,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33848062/

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