Todo script localizado em /etc/network/if-up.d é executado quando uma interface é ativada?

10

Todos os scripts em /etc/network/if-up.d são executados quando uma interface de rede é ativada?

Se sim, qual é o comando post-up no arquivo de interfaces?

    
por Spig 04.11.2009 / 22:50

1 resposta

11

Sim, geralmente qualquer script marcado como executável e colocado nessa pasta é executado. Os arquivos são limitados a um conjunto específico de nomes, porque as partes de execução são usadas.

O post-up faz o mesmo que usar up . Colocar um script no if-up.d é o mesmo que simplesmente usar um post-up que aponta para um script ou comando em outro lugar. Normalmente, você usaria o up | post-up quando precisasse executar um único comando para uma única interface. Quando você tem algo mais complexo, você criaria um script.

interfaces homem

...
up command

post-up command
      Run  command  after  bringing the interface up.  If this command
      fails then ifup aborts, refraining from marking the interface as
      configured  (even  though it has really been configured), prints
      an error message, and exits with status 0.   This  behavior  may
      change in the future.
...
There  exists  for  each  of  the  above  mentioned options a directory
/etc/network/if-<option>.d/ the scripts in which are run (with no argu-
ments) using run-parts(8) after the option itself has been processed.

man run-parts

run-parts  runs  all  the  executable  files  named  within constraints
described below,

If  the  --lsbsysinit  option  is not given then the names must consist
entirely of upper and lower  case  letters,  digits,  underscores,  and
hyphens.
...
Files are run in the lexical sort  order  of  their  names  unless  the
--reverse  option  is given, in which case they are run in the opposite
order.
    
por 04.11.2009 / 22:53