[scanner] remove mention of non-implemented trigger soruce script

This commit is contained in:
fnux 2021-05-26 11:27:11 +02:00
parent b8733c65f5
commit e0c52d0e1d
No known key found for this signature in database
GPG Key ID: 4502C902C00A1E12
1 changed files with 2 additions and 19 deletions

View File

@ -8,7 +8,8 @@ periodically. It is especially useful in netboot-based environment where hosts
boot unconfigured, and to ensure your infrastructure stays in sync with your boot unconfigured, and to ensure your infrastructure stays in sync with your
configuration. configuration.
This feature is still consider to be in **beta** stage. This feature is still consider to be in **beta** stage, and only operate on
IPv6 (including link-local).
Usage (Examples) Usage (Examples)
---------------- ----------------
@ -79,21 +80,3 @@ Resolving name from `PTR` DNS record:
done done
dig +short -x "$1" | sed -e 's/.$//' dig +short -x "$1" | sed -e 's/.$//'
Trigger Source Script
---------------------
This script returns a list of addresses (separated by a newline) to be used by
`trigger` mode. It is not used to map names. The script must be executable.
Simplest script:
.. code-block:: sh
#!/bin/sh
cat << EOF
server1.domain.tld
server2.domain.tld
server3.domain.tld
EOF