diff --git a/docs/ansible.html b/docs/ansible.html index bd2b5b7..b1ab198 100644 --- a/docs/ansible.html +++ b/docs/ansible.html @@ -55,30 +55,6 @@

Why Ansible?

and can operate in parallel on lists of hosts, so you can configure or reproduce whole networks of machines.

-

Ansible Notes

- -

If you need to specify some parameters before a batch install, you -can use the debconf module. Typically we install then configure, but -this might be useful in certain situations.

- -
-#dbconfig-common/bacula-director-mysql.conf:dbc_dbpass='whereami' #
-dbconfig-common
-
-# from debconf-show
-#  bacula-director-pgsql/pgsql/app-pass: (password omitted)
-#  bacula-director-pgsql/app-password-confirm: (password omitted)
-#  bacula-director-pgsql/pgsql/admin-pass: (password omitted)
-#  bacula-director-pgsql/password-confirm: (password omitted)
-
-# - name: Set MySQL root password before installing
-#   debconf: name='mysql-server' question='mysql-server/root_password' value='{{mysql_root_pass | quote}}' vtype='password'
-
-# - name: Confirm MySQL root password before installing
-#   debconf: name='mysql-server' question='mysql-server/root_password_again' value='{{mysql_root_pass | quote}}' vtype='password'
-
-
-