This file is indexed.

/usr/bin/librarian-puppet is in librarian-puppet 0.9.10+dfsg-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
#!/usr/bin/env ruby

lib = File.expand_path('../../lib', __FILE__)
vendor = File.expand_path('../../vendor/librarian/lib', __FILE__)
$:.unshift(lib) unless $:.include?(lib)
$:.unshift(vendor) unless $:.include?(vendor)

require 'librarian/puppet/cli'
Librarian::Puppet::Cli.bin!