Hello,
I would like to have a command launched at the end of the cycle ony if success :
mysqldump --no-create-db --no-data "${database}" > "${curdir}/db/structure.sql"
mysqldump --no-create-db --complete-insert --quote-names "${database}" databasechangelog databasechangeloglock > "${curdir}/db/data.sql"
the purpose of these files are for initial install off new instance.
How can i do ?
Or do i miss something ? ;)