You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Check if we need to set the dataSource.driverClassName property if [ -n "${DRIVER_CLASS_NAME}" ]; then if grep -q dataSource.driverClassName /etc/rundeck/rundeck-config.properties ; then sed -i 's/dataSource\.driverClassName.*$/dataSource\.driverClassName = '${DRIVER_CLASS_NAME}'/g' /etc/rundeck/rundeck-config.properties else echo "dataSource.driverClassName = ${DRIVER_CLASS_NAME}" >> /etc/rundeck/rundeck-config.properties fi fi
The text was updated successfully, but these errors were encountered:
Sure thing! We'd also need to set the default value for DRIVER_CLASS_NAME to com.mysql.jdbc.Driver in /opt/run (line 75 or so). Do you want to submit a PR?
Hi, it's possible to add ENV for
dataSource.driverClassName
...Configure Rundeck
# Check if we need to set the dataSource.driverClassName property if [ -n "${DRIVER_CLASS_NAME}" ]; then if grep -q dataSource.driverClassName /etc/rundeck/rundeck-config.properties ; then sed -i 's/dataSource\.driverClassName.*$/dataSource\.driverClassName = '${DRIVER_CLASS_NAME}'/g' /etc/rundeck/rundeck-config.properties else echo "dataSource.driverClassName = ${DRIVER_CLASS_NAME}" >> /etc/rundeck/rundeck-config.properties fi fi
The text was updated successfully, but these errors were encountered: