a )g1 @szddlmZmZmZeZdZdZddlm Z ddl m Z ddl m Z mZddlmZmZddlmZdd lmZmZdd lZdd lZdd lZdd lZdd lZzdd lZd ZWneyd ZYn0zdd lZd Z Wneyd Z Yn0z(dd l!m"Z"m#Z#ddl$m%Z%m&Z&d Z'Wney,d Z'Yn0ddl(m)Z)ddlm*Z*dZ+d a,GdddeZ-ddZ.e/dkrve.d S))absolute_importdivisionprint_functiona. --- module: yum version_added: historical short_description: Manages packages with the I(yum) package manager description: - Installs, upgrade, downgrades, removes, and lists packages and groups with the I(yum) package manager. - This module only works on Python 2. If you require Python 3 support see the M(ansible.builtin.dnf) module. options: use_backend: description: - This module supports C(yum) (as it always has), this is known as C(yum3)/C(YUM3)/C(yum-deprecated) by upstream yum developers. As of Ansible 2.7+, this module also supports C(YUM4), which is the "new yum" and it has an C(dnf) backend. - By default, this module will select the backend based on the C(ansible_pkg_mgr) fact. default: "auto" choices: [ auto, yum, yum4, dnf ] type: str version_added: "2.7" name: description: - A package name or package specifier with version, like C(name-1.0). - Comparison operators for package version are valid here C(>), C(<), C(>=), C(<=). Example - C(name>=1.0) - If a previous version is specified, the task also needs to turn C(allow_downgrade) on. See the C(allow_downgrade) documentation for caveats with downgrading packages. - When using state=latest, this can be C('*') which means run C(yum -y update). - You can also pass a url or a local path to a rpm file (using state=present). To operate on several packages this can accept a comma separated string of packages or (as of 2.0) a list of packages. aliases: [ pkg ] type: list elements: str exclude: description: - Package name(s) to exclude when state=present, or latest type: list elements: str version_added: "2.0" list: description: - "Package name to run the equivalent of C(yum list --show-duplicates ) against. In addition to listing packages, use can also list the following: C(installed), C(updates), C(available) and C(repos)." - This parameter is mutually exclusive with I(name). type: str state: description: - Whether to install (C(present) or C(installed), C(latest)), or remove (C(absent) or C(removed)) a package. - C(present) and C(installed) will simply ensure that a desired package is installed. - C(latest) will update the specified package if it's not of the latest available version. - C(absent) and C(removed) will remove the specified package. - Default is C(None), however in effect the default action is C(present) unless the C(autoremove) option is enabled for this module, then C(absent) is inferred. type: str choices: [ absent, installed, latest, present, removed ] enablerepo: description: - I(Repoid) of repositories to enable for the install/update operation. These repos will not persist beyond the transaction. When specifying multiple repos, separate them with a C(","). - As of Ansible 2.7, this can alternatively be a list instead of C(",") separated string type: list elements: str version_added: "0.9" disablerepo: description: - I(Repoid) of repositories to disable for the install/update operation. These repos will not persist beyond the transaction. When specifying multiple repos, separate them with a C(","). - As of Ansible 2.7, this can alternatively be a list instead of C(",") separated string type: list elements: str version_added: "0.9" conf_file: description: - The remote yum configuration file to use for the transaction. type: str version_added: "0.6" disable_gpg_check: description: - Whether to disable the GPG checking of signatures of packages being installed. Has an effect only if state is I(present) or I(latest). type: bool default: "no" version_added: "1.2" skip_broken: description: - Skip all unavailable packages or packages with broken dependencies without raising an error. Equivalent to passing the --skip-broken option. type: bool default: "no" version_added: "2.3" update_cache: description: - Force yum to check if cache is out of date and redownload if needed. Has an effect only if state is I(present) or I(latest). type: bool default: "no" aliases: [ expire-cache ] version_added: "1.9" validate_certs: description: - This only applies if using a https url as the source of the rpm. e.g. for localinstall. If set to C(false), the SSL certificates will not be validated. - This should only set to C(false) used on personally controlled sites using self-signed certificates as it avoids verifying the source site. - Prior to 2.1 the code worked as if this was set to C(true). type: bool default: "yes" version_added: "2.1" sslverify: description: - Disables SSL validation of the repository server for this transaction. - This should be set to C(false) if one of the configured repositories is using an untrusted or self-signed certificate. type: bool default: "yes" version_added: "2.13" update_only: description: - When using latest, only update installed packages. Do not install packages. - Has an effect only if state is I(latest) default: "no" type: bool version_added: "2.5" installroot: description: - Specifies an alternative installroot, relative to which all packages will be installed. default: "/" type: str version_added: "2.3" security: description: - If set to C(true), and C(state=latest) then only installs updates that have been marked security related. type: bool default: "no" version_added: "2.4" bugfix: description: - If set to C(true), and C(state=latest) then only installs updates that have been marked bugfix related. default: "no" type: bool version_added: "2.6" allow_downgrade: description: - Specify if the named package and version is allowed to downgrade a maybe already installed higher version of that package. Note that setting allow_downgrade=True can make this module behave in a non-idempotent way. The task could end up with a set of packages that does not match the complete list of specified packages to install (because dependencies between the downgraded package and others can cause changes to the packages which were in the earlier transaction). type: bool default: "no" version_added: "2.4" enable_plugin: description: - I(Plugin) name to enable for the install/update operation. The enabled plugin will not persist beyond the transaction. type: list elements: str version_added: "2.5" disable_plugin: description: - I(Plugin) name to disable for the install/update operation. The disabled plugins will not persist beyond the transaction. type: list elements: str version_added: "2.5" releasever: description: - Specifies an alternative release from which all packages will be installed. type: str version_added: "2.7" autoremove: description: - If C(true), removes all "leaf" packages from the system that were originally installed as dependencies of user-installed packages but which are no longer required by any such package. Should be used alone or when state is I(absent) - "NOTE: This feature requires yum >= 3.4.3 (RHEL/CentOS 7+)" type: bool default: "no" version_added: "2.7" disable_excludes: description: - Disable the excludes defined in YUM config files. - If set to C(all), disables all excludes. - If set to C(main), disable excludes defined in [main] in yum.conf. - If set to C(repoid), disable excludes defined for given repo id. type: str version_added: "2.7" download_only: description: - Only download the packages, do not install them. default: "no" type: bool version_added: "2.7" lock_timeout: description: - Amount of time to wait for the yum lockfile to be freed. required: false default: 30 type: int version_added: "2.8" install_weak_deps: description: - Will also install all packages linked by a weak dependency relation. - "NOTE: This feature requires yum >= 4 (RHEL/CentOS 8+)" type: bool default: "yes" version_added: "2.8" download_dir: description: - Specifies an alternate directory to store packages. - Has an effect only if I(download_only) is specified. type: str version_added: "2.8" install_repoquery: description: - If repoquery is not available, install yum-utils. If the system is registered to RHN or an RHN Satellite, repoquery allows for querying all channels assigned to the system. It is also required to use the 'list' parameter. - "NOTE: This will run and be logged as a separate yum transation which takes place before any other installation or removal." - "NOTE: This will use the system's default enabled repositories without regard for disablerepo/enablerepo given to the module." required: false version_added: "1.5" default: "yes" type: bool cacheonly: description: - Tells yum to run entirely from system cache; does not download or update metadata. default: "no" type: bool version_added: "2.12" extends_documentation_fragment: - action_common_attributes - action_common_attributes.flow attributes: action: details: In the case of yum, it has 2 action plugins that use it under the hood, M(ansible.builtin.yum) and M(ansible.builtin.package). support: partial async: support: none bypass_host_loop: support: none check_mode: support: full diff_mode: support: full platform: platforms: rhel notes: - When used with a C(loop:) each package will be processed individually, it is much more efficient to pass the list directly to the I(name) option. - In versions prior to 1.9.2 this module installed and removed each package given to the yum module separately. This caused problems when packages specified by filename or url had to be installed or removed together. In 1.9.2 this was fixed so that packages are installed in one yum transaction. However, if one of the packages adds a new yum repository that the other packages come from (such as epel-release) then that package needs to be installed in a separate task. This mimics yum's command line behaviour. - 'Yum itself has two types of groups. "Package groups" are specified in the rpm itself while "environment groups" are specified in a separate file (usually by the distribution). Unfortunately, this division becomes apparent to ansible users because ansible needs to operate on the group of packages in a single transaction and yum requires groups to be specified in different ways when used in that way. Package groups are specified as "@development-tools" and environment groups are "@^gnome-desktop-environment". Use the "yum group list hidden ids" command to see which category of group the group you want to install falls into.' - 'The yum module does not support clearing yum cache in an idempotent way, so it was decided not to implement it, the only method is to use command and call the yum command directly, namely "command: yum clean all" https://github.com/ansible/ansible/pull/31450#issuecomment-352889579' # informational: requirements for nodes requirements: - yum author: - Ansible Core Team - Seth Vidal (@skvidal) - Eduard Snesarev (@verm666) - Berend De Schouwer (@berenddeschouwer) - Abhijeet Kasurde (@Akasurde) - Adam Miller (@maxamillion) a - name: Install the latest version of Apache ansible.builtin.yum: name: httpd state: latest - name: Install Apache >= 2.4 ansible.builtin.yum: name: httpd>=2.4 state: present - name: Install a list of packages (suitable replacement for 2.11 loop deprecation warning) ansible.builtin.yum: name: - nginx - postgresql - postgresql-server state: present - name: Install a list of packages with a list variable ansible.builtin.yum: name: "{{ packages }}" vars: packages: - httpd - httpd-tools - name: Remove the Apache package ansible.builtin.yum: name: httpd state: absent - name: Install the latest version of Apache from the testing repo ansible.builtin.yum: name: httpd enablerepo: testing state: present - name: Install one specific version of Apache ansible.builtin.yum: name: httpd-2.2.29-1.4.amzn1 state: present - name: Upgrade all packages ansible.builtin.yum: name: '*' state: latest - name: Upgrade all packages, excluding kernel & foo related packages ansible.builtin.yum: name: '*' state: latest exclude: kernel*,foo* - name: Install the nginx rpm from a remote repo ansible.builtin.yum: name: http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm state: present - name: Install nginx rpm from a local file ansible.builtin.yum: name: /usr/local/src/nginx-release-centos-6-0.el6.ngx.noarch.rpm state: present - name: Install the 'Development tools' package group ansible.builtin.yum: name: "@Development tools" state: present - name: Install the 'Gnome desktop' environment group ansible.builtin.yum: name: "@^gnome-desktop-environment" state: present - name: List ansible packages and register result to print with debug later ansible.builtin.yum: list: ansible register: result - name: Install package with multiple repos enabled ansible.builtin.yum: name: sos enablerepo: "epel,ol7_latest" - name: Install package with multiple repos disabled ansible.builtin.yum: name: sos disablerepo: "epel,ol7_latest" - name: Download the nginx package but do not install it ansible.builtin.yum: name: - nginx state: latest download_only: true ) AnsibleModule)get_best_parsable_locale) has_respawnedrespawn_module) to_nativeto_text) fetch_url)YumDnfyumdnf_argument_specNTF)find_unfinished_transactionsfind_ts_remaining) splitFilename compareEVR)contextmanager) fetch_filez.%{epoch}:%{name}-%{version}-%{release}.%{arch}cseZdZdZfddZddZddZedd Zd d Z d d Z d7ddZ e fddZ e fddZe fddZddZddZeddZddZd8d!d"Zd#d$Zd%d&Zd'd(Zd)d*Zd+d,Zed-d.Zd/d0Zd1d2Zed3d4Zd5d6Z Z!S)9 YumModulez4 Yum Ansible module back-end implementation cs&tt||d|_d|_d|_dS)Nyumz/var/run/yum.pid)superr__init__Z pkg_mgr_namelockfile _yum_base)selfmodule __class__7/usr/lib/python3.9/site-packages/ansible/modules/yum.pyrszYumModule.__init__c Cst|jdkr|z|jj|jdWqtjjyx}z6dt|vr`|j j d|jddn|WYd}~qd}~00nj|jD]b}z|jj|Wqtjjy}z.dt|vr|j d|n|WYd}~qd}~00qdS)Nrzrepository not foundzRepository %s not found.msg) len enablerepoyum_basereposZ enableReporErrors YumBaseErrorr r fail_jsonwarn)reridrrr _enablerepos_with_error_checkings   z*YumModule._enablerepos_with_error_checkingc Cszxzt|jWYd}~YWdS|jjd||jt|fdWYd}~n d}~00Yn0Wn,t t fy}zWYd}~dSd}~00d S) NrFz /proc/%d/statZrz!Unable to check PID %s in %s: %sr!T)openrintreadline ValueErrorosunlinkgetpidsplitIOErrorkillOSErrorerrnoZESRCHrr)r )rfZoldpidstatr+rrris_lockfile_pid_valids6.     &   >zYumModule.is_lockfile_pid_validc Csx|jr |jSt|_d|jj_d|jj_d|jj_|j|jj_|j |jj_ |j r^|j |jj_ |j dkr|j |jj_ |j |jj_ |jrtj|jr|j|jj_tdkrt|jdr|jn"tj}|jj|d|jj_|jr|j|jj_|j|jj_|jjz(|jD]}|jj|q| Wn<t!yp}z"|j"j#dt$|dWYd}~n d}~00|jS)NrT/ setCacheDirFailure talking to yum: %sr!)%rrZYumBaseZpreconfZ debuglevelZ errorlevelplugins enable_pluginZenabled_pluginsdisable_pluginZdisabled_plugins releasever installrootrootconf conf_filer5pathexistsfngeteuidhasattrrAZmiscZ getCacheDirr&cachedisable_excludes sslverifyr% disablerepoZ disableRepor- Exceptionrr)r )rZcachedirr,r+rrrr%s@                    ,zYumModule.yum_basecCs,t|dr|jSd|j|j|j|j|jfS)Nui_envra%s:%s-%s-%s.%s)rOrUepochnameversionreleasearch)rZporrr po_to_envraCs zYumModule.po_to_envracCs|}tjdkr"|jjdd}n |j}|d}|D]*}||js\||jr8dSq8tjdkr|d}|D]*}||js||jrzdSqzdS)N)T)Z return_evgrpsrr/F) lowerrZ__version_info__r%Z doGroupListsendswithrXZgroupidZ environmentid)rrXZ name_lowerZ groups_listgroupsgroupZenvsenvrrris_group_env_installedIs     z YumModule.is_group_env_installedNFc s,|dur d}|sg}z<jj|g\}}}||}|sN|sN|j|Wn:ty}z"jjdt|dWYd}~n d}~00fdd|DSt sjj ddda t d d ||g} d |vr| d j d kr| dj gt j} t| | | d} jj| | d\} } }| dkrDd| vrDjjd| |fdd| vrRd} dd| dddD}|s|st d d |d|g} j d kr| dj gjj| | d\}}}n d\}}}|dkrd|vrjjd| ||fdd|vrd}|dd|dddD7}|SgS)Nz/%{epoch}:%{name}-%{version}-%{release}.%{arch} rBr!csg|]}|qSrr\.0prrr nz*YumModule.is_installed..rpmTrequiredz-q--qf*-ar@z--rootLANGLC_ALL LC_MESSAGESZenviron_updaterzis not installedzError from rpm: %s: %scSsg|]}|r|qSrstriprfrrrrjrkz(none)0 --whatprovidesrrwrwzno package providescSsg|]}|r|qSrrxrfrrrrjrk)r%rpmdbmatchPackageNamesextendreturnInstalledPackagesByDeprTrr)r rpmbin get_bin_pathappendrGrdict run_commandreplacer8)rrepoqpkgspecqfis_pkgpkgsr+m_cmdlocalelang_envrcouterrrc2out2err2rrir is_installed`sP,         zYumModule.is_installedc s8|sg}z8jj|g\}}}||}|s>|j|Wn:tyz}z"jjdt|dWYd}~n d}~00fdd|DSt |}dd j g} || dd j g} || j r|dj |d ||g} j| \} } } | d krd d| d DSjjd | | fdgS)NrBr!csg|]}|qSrrerfrirrrjrkz*YumModule.is_available.. --disablerepo, --enablerepo--releasever=%srorcSsg|]}|r|qSrrxrfrrrrjrkr{Error from repoquery: %s: %s)r%pkgSackrrreturnPackagesByDeprTrr)r listjoinrSr$rFrr8)rrrrrr+rrmyrepoqr_cmdrrrrrrir is_availables.,   zYumModule.is_availablec sr|sg}gzNj|j|}|sHjj|g\}}}||}jjddjWn:ty}z"jj dt |dWYd}~n d}~00fdd|D}t fdd|DSt |} dd jg} | | d d jg} | | jr| d j| d d ||g} j| \} } }| dkrVt dd| dDSjj d| |fdt S)Nupdates)Z pkgnarrowrBr!c3s|]}|vr|VqdSNrrgpkg)rrr rkz&YumModule.is_update..c3s|]}|VqdSrrerfrirrrrkrrrrz--pkgnarrow=updatesrorcss|]}|r|VqdSrrxrfrrrrrkr{r)r%rrrrZdoPackageListsrrTrr)r setrrrSrr$rFrr8)rrrrrr+rrZretpkgsrrrrrrr)rrr is_updates8  ,   zYumModule.is_updatec sp|spg}zzj|j|}Wnty}zpdt|vrjrljjdddjgnjjddgj|j|}nWYd}~n d}~00|sjj |gdd\}}| || |jj |gdd\}}| || |Wn<tyX}z"jj dt|dWYd}~n d}~00tfd d |DSt|}d d jg} | | d d jg} | | jr| dj|d|d|g} j| \} } } |d||g} j| \}}}| dkrP|dkrP| |7} dd| dD}|sLj|||d}|Sjj d| | |fdtS)Nz*repomd.xml signature could not be verifiedZ makecacheZfastrrr/rBr!c3s|]}|VqdSrrerfrirrrrkz*YumModule.what_provides..rrrror|cSsh|]}|r|qSrrxrfrrr rkz*YumModule.what_provides..r{rr)r%rrrTr rFrr yum_basecmdrrrr~r)rrrrSr$r8r)rrZreq_specrrr+Z exact_matchesZ glob_matchesrrrrrrrrrrrir what_providessZ         ,  zYumModule.what_providescCsg}ts |Sdd|D}t}|D]|}t|}|D]j}|\}} t| \} } } } }|D]F}d| |f}| |dkrV||dkrV||vr|d| |fq4qVq4q$|S)zr checks the package list to see if any packages are involved in an incomplete transaction css|]}t|VqdSr)rrrrrr+rkz/YumModule.transaction_exists..z%s-%srr^)transaction_helpersrrrr)rpkglist conflictsZpkglist_nvreasZunfinished_transactionsZtransZstepsstepactionZ step_specnvr.r+arZlabelrrrtransaction_existss"  zYumModule.transaction_existsc Cst}|tjt|tj}zRz||}Wn4tjyf}zWYd}~Wt |dSd}~00Wt |n t |0d|tj pd|tj |tj |tj |tjfS)z%return envra of a local rpm passed inNrVrz)rlZTransactionSetZ setVSFlagsZ_RPMVSF_NOSIGNATURESr5r1O_RDONLYZ hdrFromFdnoerrorcloseZ RPMTAG_EPOCHZ RPMTAG_NAMEZRPMTAG_VERSIONZRPMTAG_RELEASEZ RPMTAG_ARCH)rrKtsfdheaderr+rrr local_envraDs"    zYumModule.local_envrac csd}ddg}tdtdg}zxz|jjjr|jjjdvr|jjjr||jjj}|jjj}|jjjr|d|jjj}nDd|jjjvr|jjjdd d d }|jjjd |d}|r|d}|D] }t d d||tj |d<qn|D]}|jjjtj |d<qdVWnt jjy:Yn0W|D]&}td |rBtj d |=qB|d r|d tj d<|dr|dtj d<n^|D]&}td |rtj d |=q|d r|d tj d<|dr|dtj d<0dS)NrwhttphttpsZ http_proxyZ https_proxy)Z_none_:@rz//z{0}@z (http://)z\g<1>_proxyz {0}_proxyr )r5getenvr%rIproxyZproxy_usernameZproxy_passwordr8rformatresubenvironrr'r()rZnamepassschemeZ old_proxy_envZ proxy_urlitemrrr set_env_proxyYsN         zYumModule.set_env_proxyc Csv|r.|ddkr.|d\}}}}}}nd|iS||||||d|||||fd}|dkrjd|d<nd|d<|S) N|Z error_parsingrV)rXr[rWrZrYrepoenvra installedZyumstate available)rycountr8) rZpkgstrrr+rr.rrdrrr pkg_to_dicts  zYumModule.pkg_to_dict %{repoid}cCs`|d|dg}|jr&|d|jg|j|\}}}|dkrXtdd|dDSgSdS)Nrorqrrcss|]}|r|VqdSrrxrfrrrrrkz%YumModule.repolist..r{)rFrrrrr8)rrrrrrrrrrrepolistszYumModule.repolistcs\d}d}|dddg}jr0|ddjgjrL|ddjgjd krf|d jgjrtjjr|d jg7}|d krfd dt j |d|dDS|dkr܇fddt j |d|dDS|dkrfddt j |d|dDS|dkr*ddt |DSfddt j |||dj |||dDS)Nz8%{name}|%{epoch}|%{version}|%{release}|%{arch}|%{repoid}z9%{name}|%{epoch}|%{version}|%{release}|%{arch}|installed --show-duplicates --plugins--quietrrrr@ --installroot-crcsg|]}|r|qSrryrrfrirrrjrkz(YumModule.list_stuff..rqrrcsg|]}|r|qSrrrfrirrrjrkrcsg|]}|r|qSrrrfrirrrjrkr&cSs g|]}|rt|ddqS)Zenabled)repoidstate)ryr)rgrXrrrrjrkcsg|]}|r|qSrrrfrirrrjs)rSrrr$rGrJr5rKrLsortedrrrr)r repoquerybinstuffrZis_installed_qfrrrir list_stuffs,  "" "  "zYumModule.list_stuffc Cs|j|g|}|jr(|d|jg|js<|ddg|jjrb|jjd|dt|ddnt|d|d<t|j}t|||d }|jj ||d \}} } |d kr|D]>} d | vrd | | vsd| | vrd| } |jj d| |dq||d<|d | |d| 7<d|d<d| vr,|dks6d| vr>d|d<|dkrbd|d<|jj fi|d| pl| vrd|d<d|d<|jj fi||S)Nrz--setoptz sslverify=0Tresults)rchangedrchangesrrrrvr ://zNo package %s available.zCannot open: %s. Skipping.z$Package at %s could not be installedF)rr"rrr"rz Nothing to dorzdoes not have any packageszNo space left on device) rrFrrRr check_mode exit_jsonrrrr)r) ritemsrrresrrrrrrspecrrr exec_installs<   zYumModule.exec_installc( Csg}g}i}g|d<d|d<d|d<d|d<|D]v}d}d}|dsRd |vrd |vrtj|s|dd |7<|dd |d |d<|jjfi|d |vr|>t|j|} | dsd | } t | | | } Wdn1s0Yn|} | | } | dur2|jjd |d| || } | r`|dd| d| fq0t | \} }}}}| || } t | dkrt | d\}}}}}t | d\}}}}}|pd}|pd}t|||f|||f}|dkr||kr| D]}||r|g} qt | dkr| d}t |\}}} }!}"|!pDd}!t|!|| f|||f}|dkrt|jrtd}n |dkrq0| }n|dr||rq0|}ntddgt|s|j ||dd} | r|dd| d|fq0|||}#|#sF|dd|7<|dd|d|d<|jjfi|||#}$|$r|ddd|$7<d|d<|jjfi|d}%|#D]8}&|j ||&ddrd}%|dd|&|fq̐q|%s| ||rd}%|dd||%rq0|jr|#D]t} t | \} }}}}|j || dd}'|'r t |'d\}}} }!}"t|!|| f|||f}|dkrrd}n d}qq |}|r|jr||q0||q0|r||d||}|r||d||}|S) Nrrwr"rrFr.rpmr)No RPM file matching '%s' found on systemz%s.rpm4Failed to get envra information from RPM package: %sr!z$%s providing %s is already installedr/r rzTrrp?r>No package matching '%s' found available, installed or updated~4The following packages have pending transactions: %s, }z)package providing %s is already installedZ downgradeinstall)r`r5rKrLrrr)rrrenamerrrr#rZallow_downgrade startswithrdr intersectionrrrr)(rrrrZdowngrade_pkgsrrrZdowngrade_candidatepackageZnew_package_pathrZinstalled_pkgsrXZverrelrWr[Z cur_name0Zcur_ver0Zcur_rel0Z cur_epoch0Z cur_arch0Z cur_name1Zcur_ver1Zcur_rel1Z cur_epoch1Z cur_arch1ZcompareZ installed_pkgZcur_nameZcur_verZcur_relZ cur_epochZcur_archrrfoundthisZ inst_pkgsrrrrs      $                   zYumModule.installc Csg}i}g|d<d|d<d|d<d|d<|D]H}|drF||}n |||}|rb||q,|dd |q,|r|jjr|jjd |dt|d d nt|d |d <|jr|j dg|}n|j dg|}|j |\}} } ||d<|d| | |d<|dkrF|jr4d| vr4|jj ddn|jj fi|d|_ |D]R}|drl||}n|j||d d}|rPd||d<|jj fi|qPd |d<|S)Nrrwr"Frrrrz%s is not installedT)removedrr autoremoveremovezNo such commandzJVersion of YUM too old for autoremove: Requires yum 3.4.3 (RHEL/CentOS 7+)r!rz!Package '%s' couldn't be removed!) rrdrrrrrrrrrr)r) rrrrrrrrrrrrrrrsL        zYumModule.removecCsR|jr.|j|jdgd|jg\}}}n|j|jdg\}}}|||fS)Nz check-updater)rFrrr)rrrrrrrrun_check_updates(zYumModule.run_check_updatecCs"ddd|D}tdd|}i}i}|dD]}|}d|vs8t|dvs8d|d vrfq8|d |d |d }}}|dd \}} ||vrg||<|||| |d t|d kr8|d|d|d} } } | dd \} }| |vrg|| <|| | || d q8||fS)Nr{css|]}|r|VqdSrr)rglrrrrrkz/YumModule.parse_check_update..z \n\W+(.*)z \1rp)r].rr r/)rYdistrr r]r^r)r splitlinesrrr8r#rsplitr)Zcheck_update_outputrr obsoleteslinerrYrrXr Z obsolete_pkgZobsolete_versionZ obsolete_repoZ obsolete_nameZ obsolete_distrrrparse_check_updates(   zYumModule.parse_check_updatec Csi}g|d<d|d<d|d<d|d<i}g|d<g|d <i}i}d}|jdd}d |vr^d }|\} } } | dkr|r|dd |S| d kr|| \}}n*| dkr| |d<| |d<|jjfi||r|dt|} t} n:t} t} |D]&}| dr.|d|| |q| drd|vrt j |s|dd|7<|dd|d|d<|jjfi|||}|dur|jjd|d|||r|d|n|d |qd|vr~|t|j|}Wdn1s0Y||}|durN|jjd|d|||rl|d|n|d |q|||r|d|n|d ||||}|s|dd|7<|dd|d|d<|jjfi|d }|D]|}||d vr.|||r.d}qt|\}}}}}||dvr||vrd}| |||krx|| |<qq|||s|jr|dd|q|r|dd|q||}|r|ddd|7<|ddd|d|d<|jjfi|qg}| D]}| drR||dfnz||vr| |}||d}||d||d|d|d ffn4||D]*}||d!|d|d|d ffqq2|jrtg|d"|d#<nt|d |d"|d#<|r ||d$<|jjr2| s&|d r.d |d<|S|jrL|d%|jg|rp|j|\} } } d |d<n,|jr|dr|dg|d7}t|j}t|||d&}|jj||d'\} } } | }| d(s| d)sd |d<ngd*\} } } n|d s| r|js|d g|d |d7}t|j}t|||d&}|jj||d'\} } } | }| d(s| d)sd |d<ngd*\} } } | |d<|d| 7<|d| | rd |d+<|S),Nrrwr"FrrrupdaterrpTz/Nothing to do here, all packages are up to datedr rrrrrrr!rrz@Packages providing %s not installed due to update_only specifiedz(All packages providing %s are up to daterrz&because of (at least) %s-%s.%s from %srYr rz %s.%s from %s)rupdatedrrrrrrvzno packages marked for updatez nothing to dor}Zfailed) rrrrrr)rkeysrraddr`r5rKrLrrrrrrr update_onlyrrrrFrrrryr_)rrrrrrrZ update_allrrrrZ will_updateZwill_update_from_other_packagerrrrZ nothing_to_dorZpkgnamerrZ to_updatewZ other_pkgrrZ out_lowerrrrlatest sB           ,                       zYumModule.latestc Csx|j}|js|jrg}d|_|jrVtj|jrV|jd|jg7_|rV|d|jg7}|jrj|j dg|j r|j dd |j g|j r|j dd |j g|j r|j dd |j g|jr|j dd |jg|jr d d |jg}|j ||jr(|j d |jg|jr>|j d g|jrp|j d g|jrp|j d |jg|jr|j d|jg|jdkrd|jg}|j ||jdvr|jr|j|jddgz|jjj}|j rvzB|jjj}|D]&}||vr|jj|}|jj}q|}Wn@tj j!yt} z"|jj"dt#| dWYd} ~ n d} ~ 00Wn@tj j!y} z"|jj"dt#| dWYd} ~ n d} ~ 00|jdks|j$r|j%r|j&d|j'r|j&d|j(r |j&d|)||} n\|jdvrF|j%r8|j&d|*||} n.|jdvr`|+||} n|jj"dddd d!| S)"Nabsentrz --skip-brokenz--disablerepo=%srz--enablerepo=%sz--enablepluginz--disablepluginz --exclude=%sz--disableexcludes=%sz --cacheonlyz--downloadonlyz--downloaddir=%srr@z--installroot=%s)rpresentrclean expire-cachez!Error setting/accessing repos: %sr!zError accessing repos: %srz --nogpgcheckz --securityz--bugfix)rr)rrz/we should never get here unless this all failedFrwzunexpected state)r"rrerrors),namesrrrJr5rKrLrZ skip_brokenrrSrr$rDrEZexcluderQZ cacheonlyZ download_onlyZ download_dirrFrG update_cacherrr%r&rZgetRepoZrepoXMLrrr'r(r)r rZdisable_gpg_checkrZsecurityZbugfixrrr) rrrZe_cmdZ current_reposZ new_reposir,rr+rrrrensures        0,      zYumModule.ensurecCstSr)HAS_YUM_PYTHONrrrrhas_yumszYumModule.has_yumc Cs trts tjdkr ts tdg}ts2|dts@|d||r`|jj d |d|j drz|j d}n |j d}|dd d g|_ |j r|js|js|j|j d d g\}}}|d kr|jjdd|gdn|jjdd||gd|jj ddd}|jrp|sp|jjsp|j d}|r`|jrP|jd||jfn|jd||jj ddd}|jr|s|jj ddd|||ji}nTd} z|jjj} WntyYn0d| vr|r|dddg} |jdkr| d|jg|jrzttdd } | } Wdn1s80Ytj |jj!dd!} |j"| j#| $d"d#| D| %Wn<t&y}z"|jj d$t'|dWYd}~n d}~00| d%| j#g|(| }| rd&|)d'd(d)f|d'<|jjfi|dS)*z: actually execute the module code backend z/usr/bin/pythonzThe Python 2 bindings for rpm are needed for this module. If you require Python 3 support use the `dnf` Ansible module instead.zxThe Python 2 yum module is needed for this module. If you require Python 3 support use the `dnf` Ansible module instead.z. r!zyum-deprecatedrz-d2z-yrrrFz Cache updated)rr"rrzFailed to update cache repoqueryrmz'%s -y install yum-utils --releasever %sz%s -y install yum-utilszZrepoquery is required to use list= with this module. Please install the yum-utils package.rNZ rhnpluginrrrr@rz /etc/yum.confr.)dirdeletecSsg|]}|ds|qS)zexclude=)r)rgcrrrrjrkz!YumModule.run..z Failure setting up repoquery: %srz%s %sr"rwzxWarning: Due to potential bad behaviour with rhnplugin and certificates, used slower repoquery calls instead of Yum API.)*HAS_RPM_PYTHONr#sys executablerrrZ wait_for_lockrr)rrrr rrrrZinstall_repoqueryrrFrr%rCZ_pluginsAttributeErrorrGrrQr1 readlinestempfileZNamedTemporaryFileZtmpdirZadd_cleanup_filerX writelinesrrTr r"get)rZ error_msgsZyumbinrstdoutstderrrZyum_pathrr&Z yum_pluginsr=ZcontentZ tmp_conf_filer+rrrruns         ( ,   z YumModule.run)NF)r)"__name__ __module__ __qualname____doc__rr-r?propertyr%r\rdrdef_qfrrrrrrrrrrrrrr staticmethodrrr"r$r4 __classcell__rrrrrs@ * 3 6 # ) =% ( !6.C -{z rcCs:tdgddtdd<tfit}t|}|dS)Nauto)r=rZyum4Zdnf)defaultchoicesZ argument_specZ use_backend)rr rrr4)rZmodule_implementationrrrmains r@__main__)0Z __future__rrrtypeZ __metaclass__Z DOCUMENTATIONZEXAMPLESZansible.module_utils.basicrZ"ansible.module_utils.common.localerZ#ansible.module_utils.common.respawnrrZansible.module_utils._textr r Zansible.module_utils.urlsr Zansible.module_utils.yumdnfr r r<r5rr+r/rlr* ImportErrorrr#Zyum.miscrrZrpmUtils.miscutilsrrr contextlibrrr:rrr@r5rrrr sd%a          U