summaryrefslogtreecommitdiff
blob: 4a42cbb7d9e1a23bf19be6089585724fee48b9a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
From e894c6f57b88305cdf6e4e2b1543475b2e02f436 Mon Sep 17 00:00:00 2001
From: Gilles Dartiguelongue <eva@gentoo.org>
Date: Tue, 23 Oct 2018 18:59:58 +0200
Subject: [PATCH 1/2] Fix Gentoo package installation command

---
 cloudinit/distros/gentoo.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cloudinit/distros/gentoo.py b/cloudinit/distros/gentoo.py
index dc57717d..98ac41ca 100644
--- a/cloudinit/distros/gentoo.py
+++ b/cloudinit/distros/gentoo.py
@@ -192,7 +192,7 @@ class Distro(distros.Distro):
         if pkgs is None:
             pkgs = []
 
-        cmd = list('emerge')
+        cmd = ['emerge']
         # Redirect output
         cmd.append("--quiet")
 
-- 
2.19.0