Estou recebendo um erro de sintaxe do cabeçalho motd e preciso de ajuda para ativar o motd

Estou recebendo um erro de sintaxe do cabeçalho motd e preciso de ajuda para ativar o motd

Estou tentando consertar o script motd no meu servidor Ubuntu chamado /etc/update-motd.d/00-header /etc/update-motd.d/01-sysinfo /etc/update-motd.d/02-footer porque continuo recebendo esse erro de sintaxe estranho por algum motivo estranho que diz " line 31: syntax error: unexpected end of file" mas aponta para um espaço vazio sem código, o que é muito confuso.

A outra questão é que sempre que digito systemctl status motd recebo isso na tela.

Unit motd.service could not be found.

Eu estava tendo problemas com o processo sendo mascarado e usei a solução neste linksystemctl, como desmascarar.

Tenho lutado contra esse problema há algum tempo, mas estou progredindo na solução, por isso agradecemos a ajuda.

O conteúdo do arquivo está abaixo deste texto.

#!/bin/sh
#
#    00-header - create the header of the MOTD Copyright (c) 2013 Nick Charlton Copyright (c)
#    2009-2010 Canonical Ltd.
#
#    Authors: Nick Charlton <[email protected]>
#             Dustin Kirkland <[email protected]>
#
#    This program is free software; you can redistribute it and/or modify it under the terms
#    of the GNU General Public License as published by the Free Software Foundation; either
#    version 2 of the License, or (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
#    without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#    See the GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License along with this
#    program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
#    Floor, Boston, MA 02110-1301 USA.

[ -r /etc/lsb-release ] && . /etc/lsb-release

if [ -z "$DISTRIB_DESCRIPTION" ] && [ -x /usr/bin/lsb_release ]; then
        # Fall back to using the very slow lsb_release utility
        DISTRIB_DESCRIPTION=$(lsb_release -s -d) fi

figlet $(Ourserver) printf "\n"
printf "Welcome to %s (%s).n" "$DISTRIB_DESCRIPTION" "$(uname -r)" printf "\n"

Responder1

O " line 31: syntax error: unexpected end of file" acontece porque você tem um número ímpar de caracteres "pareados". Por caracteres "pareados", quero dizer caracteres que DEVEM aparecer com um caractere correspondente, possivelmente com coisas intermediárias. Por exemplo, ", ', (, [, {, etc. Conte suas cotações:

files="/etc/update-motd.d/00-header /etc/update-motd.d/01-sysinfo /etc/update-motd.d/02-footer"
grep --color=always -E "\"|'|\(|\[|\{|\}|\]|\)" $files

Responder2

O erro parece ter origem na linha 25:

25          DISTRIB_DESCRIPTION=$(lsb_release -s -d) fi

É necessário que haja um separador antes de fi- a ;ou nova linha (sugiro o último, pois preserva o recuo adequado). Então

23  if [ -z "$DISTRIB_DESCRIPTION" ] && [ -x /usr/bin/lsb_release ]; then
24          # Fall back to using the very slow lsb_release utility
25          DISTRIB_DESCRIPTION=$(lsb_release -s -d)
26  fi

informação relacionada