Merge pull request #44678 from wwwtyro/rye/fix-service-removal

Automatic merge from submit-queue

Fixes a missing comma in a list of strings.

**What this PR does / why we need it**: Fixes a missing comma in a list of strings in the kubernetes-worker Juju charm.

**Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #

**Special notes for your reviewer**:

**Release note**:

```release-note
Fixes a missing comma in a list of strings.
```
This commit is contained in:
Kubernetes Submit Queue 2017-04-19 13:21:40 -07:00 committed by GitHub
commit dd3085cdab

View File

@ -99,7 +99,7 @@ def cleanup_pre_snap_services():
# cleanup old files
files = [
"/lib/systemd/system/kubelet.service",
"/lib/systemd/system/kube-proxy.service"
"/lib/systemd/system/kube-proxy.service",
"/etc/default/kube-default",
"/etc/default/kubelet",
"/etc/default/kube-proxy",