Displaying 3 results from an estimated 3 matches for "thrift2".
2017 Jun 01
4
yum install <olderversion> does not downgrade
We're using ansible to configure our CentOS 6 servers, and we have a
task to install a specific version of a package:
- name: install thrift2
yum: name=ripencc-thrift2-{{ version }}
In this ansible task, the "version" variable is set by the operator.
When we want to upgrade, it works. But today we had to downgrade, and
noticed that ansible wasn't downgrading it. So we tried by hand (the
installed version was 1.0.8):
# y...
2017 Jun 01
0
yum install <olderversion> does not downgrade
...de' option.
https://access.redhat.com/solutions/29617
On Thu, Jun 1, 2017 at 1:46 PM, Anand Buddhdev <anandb at ripe.net> wrote:
> We're using ansible to configure our CentOS 6 servers, and we have a
> task to install a specific version of a package:
>
> - name: install thrift2
> yum: name=ripencc-thrift2-{{ version }}
>
> In this ansible task, the "version" variable is set by the operator.
> When we want to upgrade, it works. But today we had to downgrade, and
> noticed that ansible wasn't downgrading it. So we tried by hand (the
> insta...
2017 Jun 02
0
yum install <olderversion> does not downgrade
...that unpins that
version, installs the new version (even if not latest), then re-pins.
HTH.
On 06/01/2017 03:46 PM, Anand Buddhdev wrote:
> We're using ansible to configure our CentOS 6 servers, and we have a
> task to install a specific version of a package:
>
> - name: install thrift2
> yum: name=ripencc-thrift2-{{ version }}
>
> In this ansible task, the "version" variable is set by the operator.
> When we want to upgrade, it works. But today we had to downgrade, and
> noticed that ansible wasn't downgrading it. So we tried by hand (the
> inst...