You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
396 B

  1. #!/bin/bash
  2. host=$(options-get host) || exit 1
  3. port=$(options-get port) || exit 1
  4. secure=$(options-get secure) || exit 1
  5. user=$(options-get user) || exit 1
  6. password=$(options-get password) || exit 1
  7. relation-set host "$host" || exit 1
  8. relation-set port "$port" || exit 1
  9. relation-set secure "$secure" || exit 1
  10. relation-set user "$user" || exit 1
  11. relation-set password "$password" || exit 1