Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/lxc/container.rb
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ class Container

# RegEx pattern for extracting the container state from the "lxc-info"
# command output.
REGEX_STATE = /^state:\s+([\w]+)$/
REGEX_STATE = /^state:\s+([\w]+)$/i

# RegEx pattern for extracting the container PID from the "lxc-info"
# command output.
REGEX_PID = /^pid:\s+([-\d]+)$/
REGEX_PID = /^pid:\s+([-\d]+)$/i

# Returns the container name
#
Expand Down