/[smeserver]/rpms/smeserver-yum/sme10/smeserver-yum-2.6.0.bz6940.mismatch.btwn.manager.and.cli.patch
ViewVC logotype

Annotation of /rpms/smeserver-yum/sme10/smeserver-yum-2.6.0.bz6940.mismatch.btwn.manager.and.cli.patch

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (hide annotations) (download)
Fri Dec 6 03:27:29 2019 UTC (4 years, 6 months ago) by jpp
Branch: MAIN
CVS Tags: smeserver-yum-2_6_0-25_el7_sme, smeserver-yum-2_6_0-24_el7_sme, smeserver-yum-2_6_0-23_el7_sme, smeserver-yum-2_6_0-26_el7_sme
* Wed Dec 04 2019 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-23.sme
- implement yum-cron [SME: 10690]
  * use yum-cron for download only (TODO)
  * yum-cron templates  (TODO)
  * update lock path (TODO)
  * setting in server-manager (TODO)
- fix header detected as package [SME: 10843]
- avoid discrepancy between manager, cli and email [SME: 6940]
  * force refresh of metadata before db generation
  * add regeneration of db during check4updates, after yum update/install/remove
- fix no installed groups file [SME: 118]
- switch to centos vault after EOL [SME: 10249]
- update http://mirrorlist.contribs.org/mirrorlist to https://mirrorlist.koozali.org/mirrorlist [SME: 9697]
- make smecontribs visible [SME: 10716]

1 jpp 1.1 diff -Nur smeserver-yum-2.6.0.old/root/sbin/e-smith/check4updates smeserver-yum-2.6.0/root/sbin/e-smith/check4updates
2     --- smeserver-yum-2.6.0.old/root/sbin/e-smith/check4updates 2019-12-05 20:33:02.976000000 -0500
3     +++ smeserver-yum-2.6.0/root/sbin/e-smith/check4updates 2019-12-05 21:05:07.132000000 -0500
4     @@ -21,6 +21,9 @@
5     if [ $? = 100 ]; then
6     echo -e "===\n=== yum reports available updates:\n===" >> $TMPFILE
7     cat $TMP1 >> $TMPFILE
8     + # we have updates, let's inform the server-manager
9     + /usr/bin/sv o yum
10     +
11     fi
12    
13     if [ -s $TMPFILE ]; then
14     diff -Nur smeserver-yum-2.6.0.old/root/sbin/e-smith/yum_update_dbs smeserver-yum-2.6.0/root/sbin/e-smith/yum_update_dbs
15     --- smeserver-yum-2.6.0.old/root/sbin/e-smith/yum_update_dbs 2019-12-05 20:33:03.007000000 -0500
16     +++ smeserver-yum-2.6.0/root/sbin/e-smith/yum_update_dbs 2019-12-05 21:03:32.393000000 -0500
17     @@ -40,12 +40,16 @@
18     # For speed and to reduce log noise, we don't use
19     # the esmith::DB routines here
20    
21     -# XXX - FIXME - We should add -R xxx to sleep for a while
22     -
23     +# We do not use -R xxx to sleep for a while, as we do this at cron level
24     +# this allows faster results when needed or delayed when not
25     +
26     use constant YUM_CMD => "/usr/bin/yum -d 0 -e 0 ";
27    
28     # avoid error with no installed groups file.
29     -system("YUM_CMD groups mark convert -d 0 -e 0 1>/dev/null") unless (-d "/var/lib/yum/groups/");
30     +system(YUM_CMD." groups mark convert -d 0 -e 0 1>/dev/null") unless (-d "/var/lib/yum/groups/");
31     +
32     +# yum check to have fresh metadata
33     +system(YUM_CMD." check-update 1>/dev/null");
34    
35     my $tmp_file;
36    
37     diff -Nur smeserver-yum-2.6.0.old/root/usr/lib/yum-plugins/smeserver.py smeserver-yum-2.6.0/root/usr/lib/yum-plugins/smeserver.py
38     --- smeserver-yum-2.6.0.old/root/usr/lib/yum-plugins/smeserver.py 2019-12-05 20:33:02.989000000 -0500
39     +++ smeserver-yum-2.6.0/root/usr/lib/yum-plugins/smeserver.py 2019-12-05 22:20:38.831000000 -0500
40     @@ -300,6 +300,8 @@
41     if smechange:
42     os.spawnl(os.P_WAIT, config_set, config_set, 'set', 'UnsavedChanges', 'yes')
43     os.spawnl(os.P_WAIT, navigation_conf, navigation_conf)
44     + print "Reload yum db for server-manager"
45     + os.spawnl(os.P_WAIT, yum_update_dbs, yum_update_dbs)
46    
47     def close_hook(conduit):
48     if ourfile and os.path.isfile('/var/run/yum.status'):

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed