CONFIG_PROTECT

From Gentoo Wiki
Jump to:navigation Jump to:search
This page is a translated version of the page CONFIG PROTECT and the translation is 17% complete.
Outdated translations are marked like this.

Warning: Display title "CONFIG_PROTECT" overrides earlier display title "CONFIG PROTECT".

Змінна CONFIG_PROTECT містить список значень, відокремлених один від одного пробілами, що містить каталоги, в які Portage не копіюватиме нові версії файлів, а вважатиме їх файлами конфігурації, і дозволить користувачеві вручну перевірити зміни, і вирішити, потрібні вони чи ні.

A current list of presently protected locations can be displayed with portageq:

user $portageq envvar CONFIG_PROTECT
/etc /usr/share/config /usr/share/gnupg/qualified.txt

Using portageq is a short hand alternative to running a regular expression search on verbose, informational output from the emerge command:

user $emerge --verbose --info | grep -E '^CONFIG_PROTECT='
CONFIG_PROTECT="/etc /usr/share/config /usr/share/gnupg/qualified.txt"

Files or subdirectories defined within the CONFIG_PROTECT can be excluded from protection through the CONFIG_PROTECT_MASK variable. Masking is useful when a parent directory should be protected, but a certain child directory beneath it.

Змінна обробляється Portage і містить значення з профілю користувача, системного оточення (яке часто використовується додатками, які оновлюють змінні через їх файл /etc/env.d),а також налаштувань користувача з файлу /etc/portage/make.conf.

FILE /etc/portage/make.confExample CONFIG_PROTECT definitions
CONFIG_PROTECT="/var/bind"

Для більш детальної інформації дивись розділЗахист конфігураційних файлів в настільній книзі Gentoo.

See also

  • CONFIG_PROTECT_MASK — contains a list of files or subdirectories which will be excluded from the overwrite protection offered by the CONFIG_PROTECT variable.
  • savedconfig — a USE flag that preserves the saved configuration files upon package updates.
  • /etc/portage/make.conf — головний файл конфігурації глобальної середи Portage.