/usr/bin/kitchen is in test-kitchen 1.11.1-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | #!/usr/bin/ruby
# -*- encoding: utf-8 -*-
# Trap interrupts to quit cleanly. See
# https://twitter.com/mitchellh/status/283014103189053442
Signal.trap("INT") { exit 1 }
require "kitchen/cli"
require "kitchen/errors"
Kitchen.with_friendly_errors { Kitchen::CLI.start }
|