lib/specinfra/command/base/cron.rb in specinfra-2.11.10 vs lib/specinfra/command/base/cron.rb in specinfra-2.12.0

- old
+ new

@@ -1,12 +1,13 @@ class Specinfra::Command::Base::Cron < Specinfra::Command::Base class << self def check_has_entry(user, entry) entry_escaped = entry.gsub(/\*/, '\\*').gsub(/\[/, '\\[').gsub(/\]/, '\\]') + grep_command = "grep -v '^[[:space:]]*#' | grep -- ^#{escape(entry_escaped)}$" if user.nil? - "crontab -l | grep -v \"#\" -- | grep -- #{escape(entry_escaped)}" + "crontab -l | #{grep_command}" else - "crontab -u #{escape(user)} -l | grep -v \"#\" | grep -- #{escape(entry_escaped)}" + "crontab -u #{escape(user)} -l | #{grep_command}" end end end end