2023-04-04 13:36:51 +00:00
|
|
|
# Config parsing errors.
|
2023-04-30 21:29:45 +00:00
|
|
|
i=11 && err_deployer_sock_empty=$i
|
|
|
|
((i++)) && err_deployer_sock_dir_not_directory=$i
|
|
|
|
((i++)) && err_deployer_sock_dir_not_writable=$i
|
|
|
|
((i++)) && err_deployer_sock_already_in_use=$i
|
|
|
|
((i++)) && err_deployer_sock_not_exist=$i
|
|
|
|
((i++)) && err_repos_dir_empty=$i
|
|
|
|
((i++)) && err_repos_dir_not_directory=$i
|
|
|
|
((i++)) && err_repos_dir_not_accessible=$i
|
|
|
|
((i++)) && err_rpms_dir_empty=$i
|
|
|
|
((i++)) && err_rpms_dir_not_directory=$i
|
|
|
|
((i++)) && err_rpms_dir_not_accessible=$i
|
|
|
|
((i++)) && err_runner_username_empty=$i
|
|
|
|
((i++)) && err_runner_user_not_exist=$i
|
|
|
|
((i++)) && err_deployer_timeout_empty=$i
|
|
|
|
((i++)) && err_deployer_timeout_not_valid=$i
|
|
|
|
((i++)) && err_runner_sock_empty=$i
|
|
|
|
((i++)) && err_runner_sock_dir_not_directory=$i
|
|
|
|
((i++)) && err_runner_sock_dir_not_writable=$i
|
|
|
|
((i++)) && err_runner_sock_already_in_use=$i
|
|
|
|
((i++)) && err_runner_sock_not_exist=$i
|
|
|
|
((i++)) && err_deployer_username_empty=$i
|
|
|
|
((i++)) && err_deployer_user_not_exist=$i
|
|
|
|
((i++)) && err_runner_cloning_dir_empty=$i
|
|
|
|
((i++)) && err_runner_cloning_dir_not_directory=$i
|
|
|
|
((i++)) && err_runner_cloning_dir_not_writable=$i
|
|
|
|
((i++)) && err_runner_timeout_empty=$i
|
|
|
|
((i++)) && err_runner_timeout_not_valid=$i
|
|
|
|
((i++)) && err_git_runner_groupname_empty=$i
|
|
|
|
((i++)) && err_git_runner_group_not_exist=$i
|
|
|
|
((i++)) && err_runner_deployer_groupname_empty=$i
|
|
|
|
((i++)) && err_runner_deployer_group_not_exist=$i
|
|
|
|
((i++)) && err_pipeline_sock_dir_empty=$i
|
|
|
|
((i++)) && err_pipeline_sock_dir_not_directory=$i
|
|
|
|
((i++)) && err_pipeline_sock_dir_not_writable=$i
|
2023-04-04 13:36:51 +00:00
|
|
|
|
|
|
|
# JSON parsing errors
|
2023-04-30 21:29:45 +00:00
|
|
|
i=51 && err_json_bad_format=$i
|
|
|
|
((i++)) && err_pkg_name_missing=$i
|
|
|
|
((i++)) && err_pkg_name_empty=$i
|
|
|
|
((i++)) && err_repo_dir_not_exist=$i
|
|
|
|
((i++)) && err_pkg_version_missing=$i
|
|
|
|
((i++)) && err_pkg_version_empty=$i
|
|
|
|
((i++)) && err_rpm_path_not_exist=$i
|
|
|
|
((i++)) && err_repo_name_missing=$i
|
|
|
|
((i++)) && err_repo_name_empty=$i
|
|
|
|
((i++)) && err_repo_hash_missing=$i
|
|
|
|
((i++)) && err_repo_hash_empty=$i
|
|
|
|
((i++)) && err_repo_tag_empty=$i
|
2023-04-04 13:36:51 +00:00
|
|
|
|
|
|
|
# Operationnal errors.
|
2023-04-30 21:29:45 +00:00
|
|
|
i=101 && err_clone_repo=$i
|
|
|
|
((i++)) && err_checkout_hash=$i
|
|
|
|
((i++)) && err_check_format=$i
|
|
|
|
((i++)) && err_check_linting=$i
|
|
|
|
((i++)) && err_unit_test=$i
|
|
|
|
((i++)) && err_add_tag=$i
|
|
|
|
((i++)) && err_make_tarball=$i
|
|
|
|
((i++)) && err_rpm_build=$i
|
|
|
|
((i++)) && err_rpm_upgrade=$i
|
|
|
|
((i++)) && err_rpm_install=$i
|