diff options
author | Lorenz <12514511+RincewindsHat@users.noreply.github.com> | 2022-10-07 11:44:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-07 11:44:47 +0200 |
commit | 1ec6b162cb4e9fb96dcc45319b62fc7e2b3c8726 (patch) | |
tree | ad557fce2f821ec5de384e0cb156a8fbc6c6e1fc /pkg | |
parent | b90a5757f77cdc0434fa3f45cf59c63b9e695d90 (diff) | |
download | monitoring-plugins-1ec6b162cb4e9fb96dcc45319b62fc7e2b3c8726.tar.gz |
Replace egrep with grep -E (#1791)
Replace egrep with grep -E to avoid the deprecation warnings
Diffstat (limited to 'pkg')
-rwxr-xr-x | pkg/solaris/solpkg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/solaris/solpkg b/pkg/solaris/solpkg index a21176e4..73b3c647 100755 --- a/pkg/solaris/solpkg +++ b/pkg/solaris/solpkg @@ -9,7 +9,7 @@ $pkgtrans = "/usr/bin/pkgtrans"; $prototype = "prototype"; $pkginfo = "pkginfo"; $preinstall = "preinstall"; -$egrep = "/usr/bin/egrep"; +$egrep = "/usr/bin/grep -E"; # Sanity check |