2025-06-26 16:05:40 -04:00
|
|
|
#!/bin/sh -e
|
2021-06-03 02:37:05 -04:00
|
|
|
|
2015-01-12 18:45:21 -05:00
|
|
|
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
|
|
|
#
|
2015-01-11 22:34:16 -05:00
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
2021-06-03 02:37:05 -04:00
|
|
|
#
|
2015-01-11 22:34:16 -05:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
2015-01-12 18:45:21 -05:00
|
|
|
# file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
2018-02-23 03:53:12 -05:00
|
|
|
#
|
2015-01-11 22:34:16 -05:00
|
|
|
# See the COPYRIGHT file distributed with this work for additional
|
2015-01-12 18:45:21 -05:00
|
|
|
# information regarding copyright ownership.
|
2015-01-11 22:34:16 -05:00
|
|
|
|
2025-06-26 16:05:40 -04:00
|
|
|
# shellcheck source=conf.sh
|
|
|
|
|
. ../conf.sh
|
2015-01-11 22:34:16 -05:00
|
|
|
|
2025-06-26 16:05:40 -04:00
|
|
|
set -e
|
2015-01-11 22:34:16 -05:00
|
|
|
|
2025-06-26 16:05:40 -04:00
|
|
|
(
|
|
|
|
|
cd ns1
|
|
|
|
|
$SHELL sign.sh
|
|
|
|
|
)
|