通过apt-get或其他方式使用ansible安装最新版本的thrift?

时间:2014-07-28 21:01:50

标签: thrift ansible apt

我有兴趣在我的ubuntu系统上安装thrift 0.9.2,以便我可以访问fullcamel。我使用的存储库似乎只有0.9.0版本。我知道我可以从源码构建,但我需要一种更容易自动化的方法来执行此操作,因为我需要能够将此版本安装为ansible任务。目前,我有以下安全任务:

- name: Install libthrift-java=0.9.0-1ubuntu1
  apt: name=libthrift-java=0.9.0-1ubuntu1 state=present

- name: Install thrift-compiler=0.9.0-3
  apt: name=thrift-compiler=0.9.0-3 state=present

1 个答案:

答案 0 :(得分:1)

如果您想从较新的软件包安装thrift,通常您可能希望使用LaunchpadAnsible's apt_repository来添加更新的repos和软件包。但是,it doesn't look like thrift 0.9.2 is available on Launchpad

或者,您可以回复the instructions given for installing Thrift from scratch