mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
8ed075d396
Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
15 lines
285 B
Bash
Executable File
15 lines
285 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "error - remove a non-existent ip"
|
|
|
|
setup
|
|
|
|
public_address=$(ctdb_get_1_public_address)
|
|
ip="${public_address% *}" ; ip="${ip#* }"
|
|
|
|
required_result 1 "ERROR: Unable to determine interface for IP ${ip}"
|
|
|
|
simple_test $public_address
|