Fix install_banner_customization not found

During boot there is an error displayed to the screen:
"/etc/init.d/controller_config line 464
/usr/sbin/install_banner_customization No such
file or directory"

This happens because install_banner_customization
has been replaced by apply_banner_customization,
but controller_config still looks in the old
path.

The fix is simply correcting the path on controller_config.

Tests on AIO-SX:
PASS: unlock and verify if the message persists

Story: 2009965
Task: 45883

Signed-off-by: Matheus Machado Guilhermino <Matheus.MachadoGuilhermino@windriver.com>
Change-Id: I2122a598e380dcb5e91b5c66deffaa479cb79a2e
This commit is contained in:
Matheus Machado Guilhermino 2022-07-26 08:49:19 -03:00
parent 3449792cbf
commit d98a282f9b
1 changed files with 1 additions and 1 deletions

View File

@ -488,7 +488,7 @@ start()
cp $CONFIG_DIR/branding/*.tgz /opt/branding 2>/dev/null
# banner customization always returns 0, success:
/usr/sbin/install_banner_customization
/usr/sbin/apply_banner_customization
cp $CONFIG_DIR/hosts /etc/hosts
if [ $? -ne 0 ]