Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/Dobby/Boxmate/App/Command/ciplan.pm
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ sub _template_program {
[ switch_to_branch => @switch_args ],
[ debian_upgrade => () ],
[ conf_update => () ],
[ htdocs_misc_install => () ],
[ db_update => () ],
[ knot_update => () ],
[ cyrus_tmpfs => () ],
Expand Down
15 changes: 14 additions & 1 deletion misc/test-runner-on-vm
Original file line number Diff line number Diff line change
Expand Up @@ -333,9 +333,10 @@ sub STEP_knot_update ($self) {
die "knot diff failed, exited $exitstatus";
}

# diffourdomains runs ME::CustomDNS updated code itself, but need to restart knot_sync to get updated code
START("updating our domains in knot");
$self->run_cmd(
"(/home/mod_perl/hm/bin/robots/knot-update-our-domains --all --really; /home/mod_perl/hm/bin/humans/fmrbl rebuild; /home/mod_perl/hm/bin/robots/update_domain_common_fastmail_flag --really) 2>&1 | tee $root/knot-update.log",
"(/home/mod_perl/hm/utils/Services.pl knot_sync frestart; /home/mod_perl/hm/bin/robots/knot-update-our-domains --all --really; /home/mod_perl/hm/bin/humans/fmrbl rebuild; /home/mod_perl/hm/bin/robots/update_domain_common_fastmail_flag --really) 2>&1 | tee $root/knot-update.log",
"knot update",
);
}
Expand All @@ -362,6 +363,18 @@ sub STEP_conf_update ($self) {
return;
}

sub STEP_htdocs_misc_install ($self) {
START("installing htdocs/misc");

my $root = $self->root;
$self->run_cmd(
"set -o pipefail; make -C /home/mod_perl/hm/htdocs/misc BRAND:=fastmail install 2>&1 | tee $root/htdocs-misc-install.log",
"htdocs/misc install",
);

return;
}

sub STEP_newt_full ($self, @args) {
START("running Newt", 1);
my $root = $self->root;
Expand Down
Loading