| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #!/bin/bash
- # info: adding data base server
- #----------------------------------------------------------#
- # Variable&Function #
- #----------------------------------------------------------#
- # Argument defenition
- type="$1"
- host="$2"
- # Importing variables
- source $VESTA/conf/vars.conf
- source $V_FUNC/shared_func.sh
- source $V_FUNC/db_func.sh
- #----------------------------------------------------------#
- # Verifications #
- #----------------------------------------------------------#
- # Checking arg number
- check_args '2' "$#" 'type host'
- # Checking argument format
- format_validation 'host'
- # Checking db system is enabled
- is_system_enabled 'db'
- # Checking db type
- is_type_valid 'db' "$type"
- # Checking host existance
- is_db_host_valid
- # Checking db host users
- is_db_host_free
- #----------------------------------------------------------#
- # Action #
- #----------------------------------------------------------#
- # Deleting host from conf
- del_dbhost_vesta
- #----------------------------------------------------------#
- # Vesta #
- #----------------------------------------------------------#
- # Logging
- log_event 'system' "$V_EVENT"
- exit $OK
|