Logoj0ke.net Open Build Service > Projects > home:jg > yup > yup.changes
Sign Up | Log In

File yup.changes of Package yup

 
1
-------------------------------------------------------------------
2
Thu Dec  6 17:21:41 CET 2007 - meissner@suse.de
3
4
- updated switch-enterprise-nu-mirror to 0.34 from Andreas #309861
5
- introduce YUP_SP_SUBCHANS as requested by Robert Zondervan
6
- minor, but powerful change by Robert Zondervan - thanks
7
- add ability to find duplicate file and hardlink to safe space
8
9
-------------------------------------------------------------------
10
Fri Sep  7 10:15:28 CEST 2007 - meissner@suse.de
11
12
- updated switch-update-server (0.27) from Andreas,
13
  more bugfixes, other architectures.
14
- download to temporary files to avoid file corruption
15
  on aborted downloads.
16
17
-------------------------------------------------------------------
18
Tue Aug 28 13:54:27 CEST 2007 - meissner@suse.de
19
20
- updated switch-update-server version from Andreas Taschner. 
21
  Added SDK support, more debugging output.
22
23
-------------------------------------------------------------------
24
Mon Aug 27 16:37:16 CEST 2007 - meissner@suse.de
25
26
- do not remove the SP1 catalog, it might be needed for
27
  later installations. #304851
28
29
-------------------------------------------------------------------
30
Tue Jul 10 11:32:00 CEST 2007 - meissner@suse.de
31
32
- Also be able to handle OES2 once released.
33
34
- updated switch-enterprise-nu-mirror script with
35
  hopefully most bugs fixed and capable to migrate
36
  both SLES10 and SLED10 hosts.
37
38
-------------------------------------------------------------------
39
Tue Jul  3 14:30:40 CEST 2007 - meissner@suse.de
40
41
- Added a switch-enterprise-nu-mirror script, to run at
42
  the remote machine for GA -> SP1 migration using YUP
43
  mirrored repositories.
44
45
  This is sample script only, please test careful before
46
  deploying.
47
48
-------------------------------------------------------------------
49
Mon Jun 25 11:06:25 CEST 2007 - mge@novell.com
50
51
- add and package yup2zlm beta 0.4
52
53
-------------------------------------------------------------------
54
Fri Jun 22 10:37:30 CEST 2007 - mge@novell.com
55
56
- do not package yup2zlm for now
57
58
-------------------------------------------------------------------
59
Thu Jun 21 09:38:25 CEST 2007 - mge@novell.com
60
61
- better handling of metadata
62
- man-page enhancements
63
64
-------------------------------------------------------------------
65
Wed May 23 15:18:52 CEST 2007 - mge@novell.com
66
67
- better permissions support
68
69
-------------------------------------------------------------------
70
Tue May 22 01:21:36 CEST 2007 - mge@novell.com
71
- adopt for SLE 10 SP 1
72
- add yup2zlm by Jo de Baer
73
74
-------------------------------------------------------------------
75
Tue Feb 13 16:32:29 CET 2007 - rdassen@novell.com
76
- yup.1.pod: Fixed typo paramters -> parameters
77
78
-------------------------------------------------------------------
79
Mon Jan 15 16:34:23 CET 2007 - mge@suse.de
80
- apply small patch of Peter Surda - Thanks to him:
81
  * introduce "--time-cond $localfile" to curl-download
82
  * fix typo (YUP instead of correct YOU)
83
84
-------------------------------------------------------------------
85
Tue Dec  5 11:50:27 CET 2006 - mge@suse.de
86
- add /etc/permissions.d/yup 
87
88
-------------------------------------------------------------------
89
Wed Nov 29 13:58:42 CET 2006 - mge@suse.de
90
91
- enable use of several configuration files below
92
  /etc/sysconfig/yup.d
93
  (following a proposal of Marcel Ritter)
94
95
-------------------------------------------------------------------
96
Thu Nov 16 12:04:11 CET 2006 - mge@suse.de
97
98
- verify bin and src rpms,
99
  thanks to Andreas Taschner for help
100
101
-------------------------------------------------------------------
102
Wed Nov  8 13:04:56 CET 2006 - mge@suse.de
103
104
- add downloading of src.rpms from you.novell.com
105
106
-------------------------------------------------------------------
107
Mon Oct 30 10:39:53 CET 2006 - mge@suse.de
108
109
- introduce YUP_SRCRPM variable and combine with
110
  patch/idea from Heiko Helmle posted on suse-sles-s
111
  Date: Mon, 30 Oct 2006 09:36:37 +0100
112
  Subject: New YUP version 47-0.6
113
114
-------------------------------------------------------------------
115
Tue Oct 24 09:45:07 CEST 2006 - meissner@suse.de
116
117
- fixed the regular expressions for the sysconfig
118
  variable range. [:xdigit:]{32} -> ^[[:xdigit:]]{32}$ 
119
120
-------------------------------------------------------------------
121
Fri Oct 13 13:47:17 CEST 2006 - rdassen@novell.com
122
123
- Reworked the manual page.
124
125
-------------------------------------------------------------------
126
Thu Oct 12 18:07:23 CEST 2006 - rdassen@novell.com
127
128
- SLES9's bash does not support `+=' for adding to strings. Changed to good
129
  old foo="$foo bar" idiom.
130
131
-------------------------------------------------------------------
132
Wed Oct 11 15:50:09 CEST 2006 - rdassen@novell.com
133
134
- Reworked error handling again.
135
- Keep using "set -e". The error handling philosophy used is one of exception
136
  handling: catch and handle "expected" errors, but error out immediately on
137
  unexpected errors.
138
- Do not exit immediately when a download of non-metadata (like an individual
139
  RPM or patch file) fails, but record the error and do a delayed error exit
140
  at the end (similar to tar's error handling).
141
- Replaced the 
142
    command | while read line; do ... done
143
  idiom by
144
    command > tempfile
145
    {
146
        while read line; do ... done
147
    } < tempfile
148
  With the first idiom, the while loop runs as a separate process, which
149
  complicates keeping track of errors that have been caught. With the second
150
  idiom, the while loop runs in the same process so we can simply use a
151
  variable to track errors.
152
- Allocate and clean up a second temporary file for use with this idiom.
153
  Renamed variable name for the first temporary file for clarity.
154
- Track errors that are caught using a variable "errorlog".
155
156
-------------------------------------------------------------------
157
Tue Oct 10 23:34:00 CEST 2006 - mge@suse.de
158
- add YUP_DEBUGINFO; possible fix for Bug #208545
159
- add YUP_SDK
160
161
-------------------------------------------------------------------
162
Tue Sep 26 17:04:33 CEST 2006 - rdassen@novell.com
163
164
- Propagate exit values for non-simple commands to really exit at errors.
165
- Use "yup" in the name of temp files.
166
167
-------------------------------------------------------------------
168
Tue Sep 19 15:19:02 CEST 2006 - mge@suse.de
169
- Add better error handling; patch by Ray Dassen 
170
  Fixes Novell Bug #206660
171
172
-------------------------------------------------------------------
173
Fri Sep 15 07:43:11 CEST 2006 - mge@suse.de
174
175
- add support for multiple architectures
176
- add support for different curl-path (YUP_CURL)
177
- add support for different keys for SLES, SLED and other products
178
  ( YUP_ID_SLED YUP_PASS_SLED YUP_ID_SLES YUP_PASS_SLES )
179
180
-------------------------------------------------------------------
181
Thu Aug 31 13:43:21 CEST 2006 - meissner@suse.de
182
183
- fixed typo in script for older bash versions.
184
185
-------------------------------------------------------------------
186
Wed Aug 30 16:42:37 CEST 2006 - meissner@suse.de
187
188
- Initial import of YUM REPO-MD mirror script for update.novell.com.
189
190