From 13458f927c3608b92903a6ee899a691affdc1eda Mon Sep 17 00:00:00 2001 From: Thodoris Sotiropoulos Date: Tue, 19 Feb 2019 16:32:21 +0200 Subject: [PATCH] Fix ordering violation --- manifests/init.pp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manifests/init.pp b/manifests/init.pp index 417a09b..68d2a48 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -23,8 +23,9 @@ } exec { 'chrome_install': - command => 'sudo apt-get update && sudo apt-get install google-chrome-stable', + command => 'sudo apt-get update && sudo apt-get install google-chrome-stable -y', path => '/usr/bin:/usr/sbin', + require => Exec['Add chrome to sourcelist'], } }