diff options
author | Sam James <sam@gentoo.org> | 2022-05-07 07:50:28 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-05-15 01:00:05 +0000 |
commit | d4bc6cc2413b2a28a5984e1f151278ec4f3d1ff1 (patch) | |
tree | 2e37f541292f259aea79fe4d96136001eef679b2 /app-backup | |
parent | media-gfx/gimp: fgrep -> grep -F (diff) | |
download | gentoo-d4bc6cc2413b2a28a5984e1f151278ec4f3d1ff1.tar.gz gentoo-d4bc6cc2413b2a28a5984e1f151278ec4f3d1ff1.tar.bz2 gentoo-d4bc6cc2413b2a28a5984e1f151278ec4f3d1ff1.zip |
app-backup/amanda: egrep -> grep -E
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-backup')
-rw-r--r-- | app-backup/amanda/amanda-3.5.1-r3.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app-backup/amanda/amanda-3.5.1-r3.ebuild b/app-backup/amanda/amanda-3.5.1-r3.ebuild index 9498a6165145..f838aa934335 100644 --- a/app-backup/amanda/amanda-3.5.1-r3.ebuild +++ b/app-backup/amanda/amanda-3.5.1-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -77,7 +77,7 @@ amanda_variable_setup() { local currentamanda # Grab the current settings - currentamanda="$(set | egrep "^AMANDA_" | grep -v '^AMANDA_ENV_SETTINGS' | xargs)" + currentamanda="$(set | grep -E "^AMANDA_" | grep -v '^AMANDA_ENV_SETTINGS' | xargs)" # First we set the defaults AMANDA_GROUP_NAME=amanda @@ -106,7 +106,7 @@ amanda_variable_setup() { # Now pull in the old stuff if [[ -f ${EROOT}${ENVDIR}/${ENVDFILE} ]]; then # We don't just source it as we don't want everything in there. - eval $(egrep "^AMANDA_" "${EROOT}${ENVDIR}/${ENVDFILE}" | grep -v '^AMANDA_ENV_SETTINGS') + eval $(grep -E "^AMANDA_" "${EROOT}${ENVDIR}/${ENVDFILE}" | grep -v '^AMANDA_ENV_SETTINGS') fi # Re-apply the new settings if any @@ -152,7 +152,7 @@ src_prepare() { # places for us to work in mkdir -p "${MYFILESDIR}" || die # Now we store the settings we just created - set | egrep "^AMANDA_" | grep -v '^AMANDA_ENV_SETTINGS' > "${TMPENVFILE}" || die + set | grep -E "^AMANDA_" | grep -v '^AMANDA_ENV_SETTINGS' > "${TMPENVFILE}" || die # Prepare our custom files einfo "Building custom configuration files" |