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
15 lines
396 B
#!/bin/bash
|
|
|
|
|
|
host=$(options-get host) || exit 1
|
|
port=$(options-get port) || exit 1
|
|
secure=$(options-get secure) || exit 1
|
|
user=$(options-get user) || exit 1
|
|
password=$(options-get password) || exit 1
|
|
|
|
|
|
relation-set host "$host" || exit 1
|
|
relation-set port "$port" || exit 1
|
|
relation-set secure "$secure" || exit 1
|
|
relation-set user "$user" || exit 1
|
|
relation-set password "$password" || exit 1
|