Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
msimerson committed Dec 9, 2024
1 parent f06ddb8 commit 968ccc9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mail-toaster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@ stage_port_install()
if [ -n "$MT6_STAGE_PORT_FUNCTION" ]; then
echo "jexec $SAFE_NAME make -C /usr/ports/$1 extract"
jexec "$SAFE_NAME" make -C "/usr/ports/$1" extract
$MT6_STAGE_PORT_FUNCTION
eval "$MT6_STAGE_PORT_FUNCTION"
fi

echo "jexec $SAFE_NAME make -C /usr/ports/$1 build deinstall install clean"
Expand Down
7 changes: 4 additions & 3 deletions provision/vpopmail.sh
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ install_quota_report()
"$_qr"
}
MT6_STAGE_PORT_FUNCTION() {
vpopmail_port_fixups() {
sed -i '' \
-e '/pw_name char(32)/ s/char(32)/VARCHAR (64)/' \
-e '/pw_domain char(96)/ s/char(96)/VARCHAR (96)/' \
Expand Down Expand Up @@ -289,9 +289,10 @@ install_vpopmail()
#stage_port_install devel/gmake
export -f MT6_STAGE_PORT_FUNCTION
MT6_STAGE_PORT_FUNCTION=$(vpopmail_port_fixups)
export MT6_STAGE_PORT_FUNCTION
install_vpopmail_port
unset -f MT6_STAGE_PORT_FUNCTION
unset MT6_STAGE_PORT_FUNCTION
#install_vpopmail_source
Expand Down

0 comments on commit 968ccc9

Please sign in to comment.