File: lxc_container.rb

package info (click to toggle)
ruby-specinfra 2.94.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,448 kB
  • sloc: ruby: 10,538; sh: 4; makefile: 4
file content (17 lines) | stat: -rw-r--r-- 551 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class Specinfra::Command::Linux::Base::LxcContainer < Specinfra::Command::Base::LxcContainer
  class << self
    def check_exists(container)
      [
       "lxc-ls -1 | grep -w #{escape(container)}",
       "virsh -c lxc:/// list --all --name | grep -w '^#{escape(container)}$'"
      ].join(' || ')
    end

    def check_is_running(container)
      [
       "lxc-info -n #{escape(container)} -s | grep -w RUNNING",
       "virsh -c lxc:/// list --all --name --state-running | grep -w '^#{escape(container)}$'"
      ].join(' || ')
    end
  end
end