3cd12006bb
Signed-off-by: Dean Troyer <dtroyer@gmail.com>
26 lines
344 B
Bash
26 lines
344 B
Bash
#!/bin/bash
|
|
|
|
#
|
|
# Copyright (c) 2016 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
. /usr/sbin/customize-banner
|
|
|
|
banner_path="$1"
|
|
if [ -z "${banner_path}" ]; then
|
|
banner_path=$(pwd)
|
|
fi
|
|
|
|
if ! customize_banner "${banner_path}"; then
|
|
exit 1
|
|
fi
|
|
|
|
install_banner_files
|
|
|
|
# recreate /etc/motd
|
|
/usr/sbin/motd-update
|
|
|
|
exit 0
|