integ/devtools/update-motd/files/apply_banner_customization
Dean Troyer 3cd12006bb StarlingX open source release updates
Signed-off-by: Dean Troyer <dtroyer@gmail.com>
2018-05-31 07:36:35 -07:00

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