--- a/plugins/cron/functions.go 2022-03-08 17:40:53.000000000 +0100 +++ b/plugins/cron/functions.go 2022-03-08 22:37:11.883706200 +0100 @@ -81,13 +81,13 @@ } func deleteCrontab() error { - command := common.NewShellCmd("sudo /usr/bin/crontab -l -u dokku") + command := common.NewShellCmd("sudo /usr/bin/crontab -l") command.ShowOutput = false if !command.Execute() { return nil } - command = common.NewShellCmd("sudo /usr/bin/crontab -r -u dokku") + command = common.NewShellCmd("sudo /usr/bin/crontab -r") command.ShowOutput = false out, err := command.CombinedOutput() if err != nil { @@ -163,7 +163,7 @@ return fmt.Errorf("Unable to template out schedule file: %v", err) } - command := common.NewShellCmd(fmt.Sprintf("sudo /usr/bin/crontab -u dokku %s", tmpFile.Name())) + command := common.NewShellCmd(fmt.Sprintf("sudo /usr/bin/crontab %s", tmpFile.Name())) command.ShowOutput = false out, err := command.CombinedOutput() if err != nil {