cookbooks/fb_init_sample/metadata.rb (73 lines of code) (raw):
# Copyright (c) 2018-present, Facebook, Inc.
name 'fb_init_sample'
maintainer 'Facebook'
maintainer_email 'noreply@facebook.com'
license 'Apache-2.0'
description 'Setup a base runlist for using Facebook cookbooks'
source_url 'https://github.com/facebook/chef-cookbooks/'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '0.0.1'
%w{
centos
debian
ubuntu
}.each do |p|
supports p
end
[
'fb_apt',
'fb_apcupsd',
'fb_chrony',
'fb_collectd',
'fb_cron',
'fb_dnsmasq',
'fb_dracut',
'fb_e2fsprogs',
'fb_ebtables',
'fb_ethers',
'fb_ethtool',
'fb_fstab',
'fb_grub',
'fb_grubby',
'fb_hdparm',
'fb_hddtemp',
'fb_helpers',
'fb_hostconf',
'fb_hostname',
'fb_hosts',
# no recipe, but we want the provider included
# for the tests
'fb_ipc',
'fb_ipset',
'fb_iptables',
'fb_iproute',
'fb_launchd',
'fb_ldconfig',
'fb_less',
'fb_limits',
'fb_logrotate',
'fb_mlocate',
'fb_modprobe',
'fb_motd',
'fb_nscd',
'fb_nsswitch',
'fb_postfix',
'fb_profile',
'fb_rpm',
'fb_rsync',
'fb_screen',
'fb_sdparm',
'fb_securetty',
'fb_storage',
'fb_stunnel',
'fb_sudo',
'fb_swap',
'fb_sysctl',
# no recipe, but we want the provider included
# for the tests
'fb_sysfs',
'fb_syslog',
'fb_sysstat',
'fb_systemd',
'fb_timers',
'fb_tmpclean',
'fb_util_linux',
'fb_users',
].each do |cb|
depends cb
end