@geekbeer/minion 2.56.1 → 2.57.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/linux/minion-cli.sh +5 -0
- package/package.json +1 -1
package/linux/minion-cli.sh
CHANGED
|
@@ -323,7 +323,12 @@ do_setup() {
|
|
|
323
323
|
echo "${TARGET_USER} ALL=(root) NOPASSWD: ${NPM_BIN} install -g @geekbeer/minion@latest"
|
|
324
324
|
echo "${TARGET_USER} ALL=(root) NOPASSWD: ${NPM_BIN} install -g @geekbeer/minion@latest --registry *"
|
|
325
325
|
echo "${TARGET_USER} ALL=(root) NOPASSWD: /usr/bin/apt-get install *"
|
|
326
|
+
echo "${TARGET_USER} ALL=(root) NOPASSWD: /usr/bin/apt-get update"
|
|
326
327
|
echo "${TARGET_USER} ALL=(root) NOPASSWD: /usr/bin/apt-get remove *"
|
|
328
|
+
# Allow sh -c wrappers (used by playwright install-deps, etc.)
|
|
329
|
+
echo "${TARGET_USER} ALL=(root) NOPASSWD: /bin/sh -c *apt-get*"
|
|
330
|
+
echo "${TARGET_USER} ALL=(root) NOPASSWD: /usr/bin/sh -c *apt-get*"
|
|
331
|
+
echo "${TARGET_USER} ALL=(root) NOPASSWD: /bin/sh -c *dpkg*"
|
|
327
332
|
|
|
328
333
|
case "$PROC_MGR" in
|
|
329
334
|
systemd)
|