apt_repository 'datastax.sources' do
uri 'https://**********************'
components ['stable','main']
key 'https://*******************'
end
使用chef添加存储库以安装数据存储Cassandra我在repo中获得了一个额外的组件xenial。
如果我手动操作,即在终端,我正在没有xenial
我的客户端机器是ubuntu 16.04
为什么我会得到这些组件以及如何避免它?
答案 0 :(得分:1)
将distribution
参数设置为空字符串。默认为node['lsb']['codename']
:
apt_repository 'datastax.sources' do
uri 'https://**********************'
components ['stable','main']
key 'https://*******************'
distribution ''
end