我正在尝试使用 ansible 为 MYSQL DB 设置 root 密码。然而,我正在使用 debconf,它错误地告诉我:
Failed to find required executable debconf-show in paths: /sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin
我的 yaml 文件包含:
- name: set root password
become: yes
debconf:
name: 'mysql-server'
question: 'mysql-server/root_password'
value: '{{mysql_password}}'
vtype: 'password'
我正在使用centos7。有人有想法吗?