Skip to content

Commit 5305ce3

Browse files
author
Kristan Kenney
committed
Fix script paths in upgrade script for v1.4.0
1 parent 8de28bd commit 5305ce3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install/upgrade/versions/1.4.0.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ if [ "$MAIL_SYSTEM" == "exim4" ]; then
2525
echo "[ * ] Populating HELO/SMTP Banner param for existing IP's..."
2626
> /etc/exim4/mailhelo.conf
2727

28-
for ip in $(v-list-sys-ips plain | cut -f1); do
28+
for ip in $($BIN/v-list-sys-ips plain | cut -f1); do
2929
helo=$(is_ip_rdns_valid $ip)
3030

3131
if [ ! -z "$helo" ]; then
32-
v-change-sys-ip-helo $ip $helo
32+
$BIN/v-change-sys-ip-helo $ip $helo
3333
fi
3434
done
3535

0 commit comments

Comments
 (0)