From a17d1b190c5eca629ca7ecbfdf1dcbed2c6a40c4 Mon Sep 17 00:00:00 2001 From: downtownallday Date: Tue, 23 Jun 2020 07:48:46 -0400 Subject: [PATCH] Remove unused function --- tests/system-setup/upgrade-from-upstream.sh | 24 --------------------- 1 file changed, 24 deletions(-) diff --git a/tests/system-setup/upgrade-from-upstream.sh b/tests/system-setup/upgrade-from-upstream.sh index 3793e3ac..779cf912 100755 --- a/tests/system-setup/upgrade-from-upstream.sh +++ b/tests/system-setup/upgrade-from-upstream.sh @@ -96,30 +96,6 @@ upstream_install() { } -populate() { - local pw="$(static_qa_password)" - - H1 "Add some Mail-in-a-Box data" - local users=() - users+=("betsy@$(email_domainpart "$EMAIL_ADDR"):$pw") - - local alises=() - aliases+=("goalias@testdom.com > $(awk -F: {'print $1'} <<<"${users[0]}")") - aliases+=("nested@testdom.com > goalias@testdom.com") - - H2 "Add users" - if ! populate_miab_users "" "" "" "${users[@]}" - then - die "Unable to add users" - fi - - H2 "Add aliases" - if ! populate_miab_aliases "" "" "" "${aliases[@]}" - then - die "Unable to add aliases" - fi -} -