Existe algum pacote que envia um arquivo de configuração do sistema junto com o serviço?

1

Encontrei o seguinte na página do manual systemd.preset -

It is not recommended to ship preset files within the respective software packages implementing the units, but rather centralize them in a distribution or spin default policy, which can be amended by administrator policy.

Não encontrei nenhum arquivo predefinido específico do pacote em /usr/lib/systemd/system-preset na minha máquina.

Existe algum software que envie esses arquivos predefinidos junto com o pacote? Esse rpm instalará o arquivo predefinido em /usr/lib/systemd/system-preset . (Além dos arquivos padrão predefinidos systemd e distribution).

    
por nithinj 03.12.2016 / 18:08

2 respostas

2

No Arch Linux, use pkgfile :

# pkgfile -u
$ pkgfile -v -g "/usr/lib/systemd/system-preset/*"
core/systemd 232-4  /usr/lib/systemd/system-preset/90-systemd.preset
core/systemd 232-4  /usr/lib/systemd/system-preset/99-default.preset

No Debian ou Ubuntu, use apt-file :

# apt-file update
$ apt-file search /lib/systemd/system-preset
systemd: /lib/systemd/system-preset/90-systemd.preset
zfsutils-linux: /lib/systemd/system-preset/50-zfs.preset
    
por 03.12.2016 / 19:11
2

Além da resposta do @gravity acima, no Centos, use yum whatprovides :

yum whatprovides "/usr/lib/systemd/system-preset/*"
    
por 17.05.2018 / 09:15

Tags