8 lines
185 B
Bash
Executable file
8 lines
185 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
EIX_DB="/var/cache/eix/portage.eix"
|
|
PORTAGE_TIMESTAMP="/usr/portage/metadata/timestamp"
|
|
|
|
if [[ "$EIX_DB" -ot "$PORTAGE_TIMESTAMP" ]] ; then
|
|
chronic eix-update
|
|
fi
|