This is an automated email from the ASF dual-hosted git repository.
zrhoffman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git
The following commit(s) were added to refs/heads/master by this push:
new 02bc598 Fix wording for package uninstall (#6131)
02bc598 is described below
commit 02bc598cfd6185a24fa47abce7aa7b443d3a47aa
Author: Evan Zelkowitz <[email protected]>
AuthorDate: Fri Aug 20 17:17:31 2021 -0600
Fix wording for package uninstall (#6131)
---
cache-config/t3c-apply/torequest/torequest.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cache-config/t3c-apply/torequest/torequest.go
b/cache-config/t3c-apply/torequest/torequest.go
index e3b4be9..7763fbb 100644
--- a/cache-config/t3c-apply/torequest/torequest.go
+++ b/cache-config/t3c-apply/torequest/torequest.go
@@ -953,7 +953,7 @@ func (r *TrafficOpsReq) ProcessPackages() error {
// uninstall packages marked for removal
if len(install) > 0 && r.Cfg.InstallPackages {
for jj := range uninstall {
- log.Infof("Uninstalling %s\n",
install[jj])
+ log.Infof("Uninstalling %s\n",
uninstall[jj])
r, err := util.PackageAction("remove",
uninstall[jj])
if err != nil {
return errors.New("Unable to
uninstall " + uninstall[jj] + " : " + err.Error())