aboutsummaryrefslogtreecommitdiff
path: root/trunk
diff options
context:
space:
mode:
Diffstat (limited to 'trunk')
-rw-r--r--trunk/lib/common.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/trunk/lib/common.sh b/trunk/lib/common.sh
index 7f299f0..56b506f 100644
--- a/trunk/lib/common.sh
+++ b/trunk/lib/common.sh
@@ -94,7 +94,7 @@ function install_packages {
# check if the package was installed
pack="`echo $pack | sed -e 's/\+/\\\+/'`"
- installed=`eval "ls /$root/var/log/packages/ | egrep -E '^$pack-[^-]+-[^-]+-[^-]+$'"`
+ installed=`eval "ls /$root/var/log/packages/ | grep -E '^$pack-[^-]+-[^-]+-[^-]+$'"`
check=$?
if [ ! -z "$installed" ] && [ "$check" == "0" ]; then
@@ -834,7 +834,7 @@ function update_jail_packages {
# check if the package is installed
pack="`echo $pack | sed -e 's/\+/\\\+/'`"
- installed=`eval "ls /$1/var/log/packages/ | egrep -E '^$pack-[^-]+-[^-]+-[^-]+$'"`
+ installed=`eval "ls /$1/var/log/packages/ | grep -E '^$pack-[^-]+-[^-]+-[^-]+$'"`
check=$?
if [ -z "$installed" ] || [ "$check" != "0" ]; then