diff options
| author | Paul Buetow <paul@buetow.org> | 2023-08-13 12:41:16 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2023-08-13 12:41:16 +0300 |
| commit | 46c0431b4c4eb99cd6c38e0a7e448aa5971cf587 (patch) | |
| tree | b567ccbd68d9d4b0dbd288e229217877fdb63f68 | |
| parent | 76fd64b32fc0c7952a0fb57ef38e871e69fbe522 (diff) | |
use run_task
| -rw-r--r-- | frontends/Rexfile | 33 |
1 files changed, 16 insertions, 17 deletions
diff --git a/frontends/Rexfile b/frontends/Rexfile index e02c7a0..da679b2 100644 --- a/frontends/Rexfile +++ b/frontends/Rexfile @@ -524,23 +524,22 @@ task 'ircbouncer', group => 'ircbouncer', # COMBINED TASKS SECTION desc 'Common configs of all hosts'; -task 'commons', group => 'frontends', - sub { - base(); - uptimed(); - httpd(); - gemtexter(); - taskwarrior(); - acme(); - acme_invoke(); - inetd(); - relayd(); - smtpd(); - rsync(); - gogios(); - # Requires manually installing the binary! - # dtail(); - }; +task 'commons', group => 'frontends', sub { + run_task 'base'; + run_task 'uptimed'; + run_task 'httpd'; + run_task 'gemtexter'; + run_task 'taskwarrior'; + run_task 'acme'; + run_task 'acme_invoke'; + run_task 'inetd'; + run_task 'relayd'; + run_task 'smtpd'; + run_task 'rsync'; + run_task 'gogios'; + # Requires manually installing the binary! + # run_task 'dtail'; +}; 1; |
