├── conf ├── bacula-dir.conf ├── bacula-fd.conf ├── bacula-sd.conf ├── bconsole.conf ├── clients-and-jobs.conf ├── clients-and-jobs │ ├── srv_bacula-fd.conf │ ├── srv_bacula-filesets.conf │ ├── srv_bacula-jobs.conf │ ├── srv_windows-fd.conf │ ├── srv_windows-filesets.conf │ └── srv_windows-jobs.conf ├── counters.conf ├── messages.conf ├── openssl.cnf.template ├── pools.conf ├── readme-english.md ├── readme.md ├── schedules.conf ├── scripts │ ├── _autochanger.sh │ ├── _bacula_certificates_generator.sh │ ├── _bacula_community_package.sh │ ├── _create_mysql_function │ ├── _delete_bootstrap_files │ ├── _delete_multiples_volumes.sh │ ├── _disable_backup_holidays.sh │ ├── _list_files_by_extension.ps1 │ ├── _password_generator.sh │ ├── _query.sql │ ├── _rclone_sync.sh │ ├── _send_telegram_mysql.sh │ └── _verify_jobs_mysql.sh └── storages.conf ├── convert_mysql_to_postgresql ├── import_postgresql.sh ├── mysql_to_postresql.sh └── readme.md ├── dicas ├── heartbeat_interval.md ├── maximum_concurrent_jobs.md └── mysql_sql-mode.md ├── firebird ├── delete_firebird_backup.ps1 ├── delete_firebird_backup.sh ├── make_firebird_backup.ps1 ├── make_firebird_backup.sh ├── readme-english.md └── readme.md ├── hyper-v ├── delete_backup_virtual_machine.ps1 ├── hyper-v_backup.ps1 └── make_backup_virtual_machine.ps1 ├── mssql ├── make_mssql_backup.ps1 ├── readme-english.md └── readme.md ├── mysql ├── _backup_mysql.sh ├── readme-english.md └── readme.md ├── pfsense ├── README.md └── _backup_pfsense.sh ├── postfix ├── generic ├── main.cf ├── readme-english.md ├── readme.md ├── sasl_passwd └── sender_relay ├── readme-english.md ├── readme.md ├── telegram ├── _send_telegram.sh ├── readme-english.md └── readme.md └── tutorial ├── bacula_install_centos7.txt ├── bacula_install_debian10.txt ├── bacula_install_debian9.txt ├── bacula_install_ubuntu_22.0.4.txt ├── baculum_install_centos7.sh ├── baculum_install_debian9.sh ├── upgrade_bacula.md ├── webacula_install_centos7.txt └── webacula_install_debian9.txt /conf/bacula-dir.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/bacula-dir.conf -------------------------------------------------------------------------------- /conf/bacula-fd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/bacula-fd.conf -------------------------------------------------------------------------------- /conf/bacula-sd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/bacula-sd.conf -------------------------------------------------------------------------------- /conf/bconsole.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/bconsole.conf -------------------------------------------------------------------------------- /conf/clients-and-jobs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/clients-and-jobs.conf -------------------------------------------------------------------------------- /conf/clients-and-jobs/srv_bacula-fd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/clients-and-jobs/srv_bacula-fd.conf -------------------------------------------------------------------------------- /conf/clients-and-jobs/srv_bacula-filesets.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/clients-and-jobs/srv_bacula-filesets.conf -------------------------------------------------------------------------------- /conf/clients-and-jobs/srv_bacula-jobs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/clients-and-jobs/srv_bacula-jobs.conf -------------------------------------------------------------------------------- /conf/clients-and-jobs/srv_windows-fd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/clients-and-jobs/srv_windows-fd.conf -------------------------------------------------------------------------------- /conf/clients-and-jobs/srv_windows-filesets.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/clients-and-jobs/srv_windows-filesets.conf -------------------------------------------------------------------------------- /conf/clients-and-jobs/srv_windows-jobs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/clients-and-jobs/srv_windows-jobs.conf -------------------------------------------------------------------------------- /conf/counters.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/counters.conf -------------------------------------------------------------------------------- /conf/messages.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/messages.conf -------------------------------------------------------------------------------- /conf/openssl.cnf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/openssl.cnf.template -------------------------------------------------------------------------------- /conf/pools.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/pools.conf -------------------------------------------------------------------------------- /conf/readme-english.md: -------------------------------------------------------------------------------- 1 | ## How to configure bacula-dir.conf in separated files 2 | -------------------------------------------------------------------------------- /conf/readme.md: -------------------------------------------------------------------------------- 1 | ## Exemplo de configuração do bacula em arquivos separados 2 | -------------------------------------------------------------------------------- /conf/schedules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/schedules.conf -------------------------------------------------------------------------------- /conf/scripts/_autochanger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/scripts/_autochanger.sh -------------------------------------------------------------------------------- /conf/scripts/_bacula_certificates_generator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/scripts/_bacula_certificates_generator.sh -------------------------------------------------------------------------------- /conf/scripts/_bacula_community_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/scripts/_bacula_community_package.sh -------------------------------------------------------------------------------- /conf/scripts/_create_mysql_function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/scripts/_create_mysql_function -------------------------------------------------------------------------------- /conf/scripts/_delete_bootstrap_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/scripts/_delete_bootstrap_files -------------------------------------------------------------------------------- /conf/scripts/_delete_multiples_volumes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/scripts/_delete_multiples_volumes.sh -------------------------------------------------------------------------------- /conf/scripts/_disable_backup_holidays.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/scripts/_disable_backup_holidays.sh -------------------------------------------------------------------------------- /conf/scripts/_list_files_by_extension.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/scripts/_list_files_by_extension.ps1 -------------------------------------------------------------------------------- /conf/scripts/_password_generator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/scripts/_password_generator.sh -------------------------------------------------------------------------------- /conf/scripts/_query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/scripts/_query.sql -------------------------------------------------------------------------------- /conf/scripts/_rclone_sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/scripts/_rclone_sync.sh -------------------------------------------------------------------------------- /conf/scripts/_send_telegram_mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/scripts/_send_telegram_mysql.sh -------------------------------------------------------------------------------- /conf/scripts/_verify_jobs_mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/scripts/_verify_jobs_mysql.sh -------------------------------------------------------------------------------- /conf/storages.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/conf/storages.conf -------------------------------------------------------------------------------- /convert_mysql_to_postgresql/import_postgresql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/convert_mysql_to_postgresql/import_postgresql.sh -------------------------------------------------------------------------------- /convert_mysql_to_postgresql/mysql_to_postresql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/convert_mysql_to_postgresql/mysql_to_postresql.sh -------------------------------------------------------------------------------- /convert_mysql_to_postgresql/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/convert_mysql_to_postgresql/readme.md -------------------------------------------------------------------------------- /dicas/heartbeat_interval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/dicas/heartbeat_interval.md -------------------------------------------------------------------------------- /dicas/maximum_concurrent_jobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/dicas/maximum_concurrent_jobs.md -------------------------------------------------------------------------------- /dicas/mysql_sql-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/dicas/mysql_sql-mode.md -------------------------------------------------------------------------------- /firebird/delete_firebird_backup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/firebird/delete_firebird_backup.ps1 -------------------------------------------------------------------------------- /firebird/delete_firebird_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/firebird/delete_firebird_backup.sh -------------------------------------------------------------------------------- /firebird/make_firebird_backup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/firebird/make_firebird_backup.ps1 -------------------------------------------------------------------------------- /firebird/make_firebird_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/firebird/make_firebird_backup.sh -------------------------------------------------------------------------------- /firebird/readme-english.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/firebird/readme-english.md -------------------------------------------------------------------------------- /firebird/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/firebird/readme.md -------------------------------------------------------------------------------- /hyper-v/delete_backup_virtual_machine.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/hyper-v/delete_backup_virtual_machine.ps1 -------------------------------------------------------------------------------- /hyper-v/hyper-v_backup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/hyper-v/hyper-v_backup.ps1 -------------------------------------------------------------------------------- /hyper-v/make_backup_virtual_machine.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/hyper-v/make_backup_virtual_machine.ps1 -------------------------------------------------------------------------------- /mssql/make_mssql_backup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/mssql/make_mssql_backup.ps1 -------------------------------------------------------------------------------- /mssql/readme-english.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/mssql/readme-english.md -------------------------------------------------------------------------------- /mssql/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/mssql/readme.md -------------------------------------------------------------------------------- /mysql/_backup_mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/mysql/_backup_mysql.sh -------------------------------------------------------------------------------- /mysql/readme-english.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/mysql/readme-english.md -------------------------------------------------------------------------------- /mysql/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/mysql/readme.md -------------------------------------------------------------------------------- /pfsense/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/pfsense/README.md -------------------------------------------------------------------------------- /pfsense/_backup_pfsense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/pfsense/_backup_pfsense.sh -------------------------------------------------------------------------------- /postfix/generic: -------------------------------------------------------------------------------- 1 | root@debian.local user@domain.com 2 | -------------------------------------------------------------------------------- /postfix/main.cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/postfix/main.cf -------------------------------------------------------------------------------- /postfix/readme-english.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/postfix/readme-english.md -------------------------------------------------------------------------------- /postfix/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/postfix/readme.md -------------------------------------------------------------------------------- /postfix/sasl_passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/postfix/sasl_passwd -------------------------------------------------------------------------------- /postfix/sender_relay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/postfix/sender_relay -------------------------------------------------------------------------------- /readme-english.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/readme-english.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/readme.md -------------------------------------------------------------------------------- /telegram/_send_telegram.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/telegram/_send_telegram.sh -------------------------------------------------------------------------------- /telegram/readme-english.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/telegram/readme-english.md -------------------------------------------------------------------------------- /telegram/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/telegram/readme.md -------------------------------------------------------------------------------- /tutorial/bacula_install_centos7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/tutorial/bacula_install_centos7.txt -------------------------------------------------------------------------------- /tutorial/bacula_install_debian10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/tutorial/bacula_install_debian10.txt -------------------------------------------------------------------------------- /tutorial/bacula_install_debian9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/tutorial/bacula_install_debian9.txt -------------------------------------------------------------------------------- /tutorial/bacula_install_ubuntu_22.0.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/tutorial/bacula_install_ubuntu_22.0.4.txt -------------------------------------------------------------------------------- /tutorial/baculum_install_centos7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/tutorial/baculum_install_centos7.sh -------------------------------------------------------------------------------- /tutorial/baculum_install_debian9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/tutorial/baculum_install_debian9.sh -------------------------------------------------------------------------------- /tutorial/upgrade_bacula.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/tutorial/upgrade_bacula.md -------------------------------------------------------------------------------- /tutorial/webacula_install_centos7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/tutorial/webacula_install_centos7.txt -------------------------------------------------------------------------------- /tutorial/webacula_install_debian9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanderleihuttel/bacula-utils/HEAD/tutorial/webacula_install_debian9.txt --------------------------------------------------------------------------------