-
Notifications
You must be signed in to change notification settings - Fork 0
/
proxyupdater_test.go
651 lines (558 loc) · 18.9 KB
/
proxyupdater_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
// Copyright 2014 Canonical Ltd.
// Licensed under the AGPLv3, see LICENCE file for details.
package proxyupdater_test
import (
"fmt"
"net/http"
"net/http/httptest"
"os"
"path"
"path/filepath"
"strings"
"time"
"github.com/juju/errors"
"github.com/juju/loggo"
jujuos "github.com/juju/os/v2"
"github.com/juju/packaging/v3/commands"
pacconfig "github.com/juju/packaging/v3/config"
"github.com/juju/proxy"
jc "github.com/juju/testing/checkers"
"github.com/juju/worker/v3"
"github.com/juju/worker/v3/workertest"
gc "gopkg.in/check.v1"
proxyupdaterapi "github.com/juju/juju/api/agent/proxyupdater"
"github.com/juju/juju/core/watcher"
coretesting "github.com/juju/juju/testing"
"github.com/juju/juju/worker/proxyupdater"
)
type ProxyUpdaterSuite struct {
coretesting.BaseSuite
api *fakeAPI
proxyEnvFile string
proxySystemdFile string
detectedSettings proxy.Settings
inProcSettings chan proxy.Settings
config proxyupdater.Config
}
var _ = gc.Suite(&ProxyUpdaterSuite{})
func newNotAWatcher() notAWatcher {
return notAWatcher{workertest.NewFakeWatcher(2, 2)}
}
type notAWatcher struct {
workertest.NotAWatcher
}
func (w notAWatcher) Changes() watcher.NotifyChannel {
return w.NotAWatcher.Changes()
}
type fakeAPI struct {
proxies proxyupdaterapi.ProxyConfiguration
Err error
Watcher *notAWatcher
}
func NewFakeAPI() *fakeAPI {
f := &fakeAPI{}
return f
}
func (api fakeAPI) ProxyConfig() (proxyupdaterapi.ProxyConfiguration, error) {
return api.proxies, api.Err
}
func (api *fakeAPI) WatchForProxyConfigAndAPIHostPortChanges() (watcher.NotifyWatcher, error) {
if api.Watcher == nil {
w := newNotAWatcher()
api.Watcher = &w
}
return api.Watcher, nil
}
func (s *ProxyUpdaterSuite) SetUpTest(c *gc.C) {
s.BaseSuite.SetUpTest(c)
s.api = NewFakeAPI()
// Make buffer large for tests that never look at the settings.
s.inProcSettings = make(chan proxy.Settings, 1000)
directory := c.MkDir()
s.proxySystemdFile = filepath.Join(directory, "systemd.file")
s.proxyEnvFile = filepath.Join(directory, "env.file")
logger := loggo.GetLogger("test.proxyupdater")
logger.SetLogLevel(loggo.TRACE)
s.config = proxyupdater.Config{
SupportLegacyValues: true,
SystemdFiles: []string{s.proxySystemdFile},
EnvFiles: []string{s.proxyEnvFile},
API: s.api,
InProcessUpdate: func(newSettings proxy.Settings) error {
select {
case s.inProcSettings <- newSettings:
case <-time.After(coretesting.LongWait):
panic("couldn't send settings on inProcSettings channel")
}
return nil
},
Logger: logger,
}
s.PatchValue(&pacconfig.AptProxyConfigFile, path.Join(directory, "juju-apt-proxy"))
}
func (s *ProxyUpdaterSuite) TearDownTest(c *gc.C) {
s.BaseSuite.TearDownTest(c)
if s.api.Watcher != nil {
s.api.Watcher.Close()
}
}
func (s *ProxyUpdaterSuite) waitProxySettings(c *gc.C, expected proxy.Settings) {
maxWait := time.After(coretesting.LongWait)
var (
inProcSettings, envSettings proxy.Settings
gotInProc, gotEnv bool
)
for {
select {
case <-maxWait:
c.Fatalf("timeout while waiting for proxy settings to change")
return
case inProcSettings = <-s.inProcSettings:
if c.Check(inProcSettings, gc.Equals, expected) {
gotInProc = true
}
case <-time.After(coretesting.ShortWait):
envSettings = proxy.DetectProxies()
if envSettings == expected {
gotEnv = true
} else {
if envSettings != s.detectedSettings {
c.Logf("proxy settings are \n%#v, should be \n%#v, still waiting", envSettings, expected)
}
s.detectedSettings = envSettings
}
}
if gotEnv && gotInProc {
break
}
}
}
func (s *ProxyUpdaterSuite) waitForFile(c *gc.C, filename, expected string) {
maxWait := time.After(coretesting.LongWait)
for {
select {
case <-maxWait:
c.Fatalf("timeout while waiting for proxy settings to change")
return
case <-time.After(10 * time.Millisecond):
fileContent, err := os.ReadFile(filename)
if os.IsNotExist(err) {
continue
}
c.Assert(err, jc.ErrorIsNil)
if string(fileContent) != expected {
c.Logf("file content not matching, still waiting")
continue
}
return
}
}
}
func (s *ProxyUpdaterSuite) TestRunStop(c *gc.C) {
updater, err := proxyupdater.NewWorker(s.config)
c.Assert(err, jc.ErrorIsNil)
workertest.CleanKill(c, updater)
}
func (s *ProxyUpdaterSuite) useLegacyConfig(c *gc.C) (proxy.Settings, proxy.Settings) {
s.api.proxies = proxyupdaterapi.ProxyConfiguration{
LegacyProxy: proxy.Settings{
Http: "http legacy proxy",
Https: "https legacy proxy",
Ftp: "ftp legacy proxy",
NoProxy: "localhost,no legacy proxy",
},
APTProxy: proxy.Settings{
Http: "http://apt.http.proxy",
Https: "https://apt.https.proxy",
Ftp: "ftp://apt.ftp.proxy",
},
}
return s.api.proxies.LegacyProxy, s.api.proxies.APTProxy
}
func (s *ProxyUpdaterSuite) useJujuConfig(c *gc.C) (proxy.Settings, proxy.Settings) {
s.api.proxies = proxyupdaterapi.ProxyConfiguration{
JujuProxy: proxy.Settings{
Http: "http juju proxy",
Https: "https juju proxy",
Ftp: "ftp juju proxy",
NoProxy: "localhost,no juju proxy",
},
APTProxy: proxy.Settings{
Http: "http://apt.http.proxy",
Https: "https://apt.https.proxy",
Ftp: "ftp://apt.ftp.proxy",
},
}
return s.api.proxies.JujuProxy, s.api.proxies.APTProxy
}
func (s *ProxyUpdaterSuite) TestInitialStateLegacyProxy(c *gc.C) {
if host := jujuos.HostOS(); host == jujuos.CentOS {
c.Skip(fmt.Sprintf("apt settings not handled on %s", host.String()))
}
proxySettings, aptProxySettings := s.useLegacyConfig(c)
updater, err := proxyupdater.NewWorker(s.config)
c.Assert(err, jc.ErrorIsNil)
defer worker.Stop(updater)
s.waitProxySettings(c, proxySettings)
s.waitForFile(c, s.proxyEnvFile, proxySettings.AsScriptEnvironment())
s.waitForFile(c, s.proxySystemdFile, proxySettings.AsSystemdDefaultEnv())
paccmder := commands.NewAptPackageCommander()
s.waitForFile(c, pacconfig.AptProxyConfigFile, paccmder.ProxyConfigContents(aptProxySettings)+"\n")
}
func (s *ProxyUpdaterSuite) TestInitialStateJujuProxy(c *gc.C) {
if host := jujuos.HostOS(); host == jujuos.CentOS {
c.Skip(fmt.Sprintf("apt settings not handled on %s", host.String()))
}
proxySettings, aptProxySettings := s.useJujuConfig(c)
updater, err := proxyupdater.NewWorker(s.config)
c.Assert(err, jc.ErrorIsNil)
defer worker.Stop(updater)
s.waitProxySettings(c, proxySettings)
var empty proxy.Settings
// The environment files are written, but with empty content.
// This keeps the symlinks working.
s.waitForFile(c, s.proxyEnvFile, empty.AsScriptEnvironment())
s.waitForFile(c, s.proxySystemdFile, empty.AsSystemdDefaultEnv())
paccmder := commands.NewAptPackageCommander()
s.waitForFile(c, pacconfig.AptProxyConfigFile, paccmder.ProxyConfigContents(aptProxySettings)+"\n")
}
func (s *ProxyUpdaterSuite) TestEnvironmentVariablesLegacyProxy(c *gc.C) {
setenv := func(proxy, value string) {
os.Setenv(proxy, value)
os.Setenv(strings.ToUpper(proxy), value)
}
setenv("http_proxy", "foo")
setenv("https_proxy", "foo")
setenv("ftp_proxy", "foo")
setenv("no_proxy", "foo")
proxySettings, _ := s.useLegacyConfig(c)
updater, err := proxyupdater.NewWorker(s.config)
c.Assert(err, jc.ErrorIsNil)
defer worker.Stop(updater)
s.waitProxySettings(c, proxySettings)
assertEnv := func(proxy, value string) {
c.Assert(os.Getenv(proxy), gc.Equals, value)
c.Assert(os.Getenv(strings.ToUpper(proxy)), gc.Equals, value)
}
assertEnv("http_proxy", proxySettings.Http)
assertEnv("https_proxy", proxySettings.Https)
assertEnv("ftp_proxy", proxySettings.Ftp)
assertEnv("no_proxy", proxySettings.NoProxy)
}
func (s *ProxyUpdaterSuite) TestEnvironmentVariablesJujuProxy(c *gc.C) {
setenv := func(proxy, value string) {
os.Setenv(proxy, value)
os.Setenv(strings.ToUpper(proxy), value)
}
setenv("http_proxy", "foo")
setenv("https_proxy", "foo")
setenv("ftp_proxy", "foo")
setenv("no_proxy", "foo")
proxySettings, _ := s.useJujuConfig(c)
updater, err := proxyupdater.NewWorker(s.config)
c.Assert(err, jc.ErrorIsNil)
defer worker.Stop(updater)
s.waitProxySettings(c, proxySettings)
assertEnv := func(proxy, value string) {
c.Assert(os.Getenv(proxy), gc.Equals, value)
c.Assert(os.Getenv(strings.ToUpper(proxy)), gc.Equals, value)
}
assertEnv("http_proxy", proxySettings.Http)
assertEnv("https_proxy", proxySettings.Https)
assertEnv("ftp_proxy", proxySettings.Ftp)
assertEnv("no_proxy", proxySettings.NoProxy)
}
func (s *ProxyUpdaterSuite) TestExternalFuncCalled(c *gc.C) {
// Called for both legacy and juju proxy values
externalProxySet := func() proxy.Settings {
updated := make(chan proxy.Settings)
done := make(chan struct{})
s.config.ExternalUpdate = func(values proxy.Settings) error {
select {
case updated <- values:
case <-done:
}
return nil
}
updater, err := proxyupdater.NewWorker(s.config)
c.Assert(err, jc.ErrorIsNil)
defer worker.Stop(updater)
// We need to close done before stopping the worker, so the
// defer comes after the worker stop.
defer close(done)
select {
case <-time.After(time.Second):
c.Fatal("function not called")
case externalSettings := <-updated:
return externalSettings
}
return proxy.Settings{}
}
proxySettings, _ := s.useLegacyConfig(c)
externalSettings := externalProxySet()
c.Assert(externalSettings, jc.DeepEquals, proxySettings)
proxySettings, _ = s.useJujuConfig(c)
externalSettings = externalProxySet()
c.Assert(externalSettings, jc.DeepEquals, proxySettings)
}
func (s *ProxyUpdaterSuite) TestErrorSettingInProcessLogs(c *gc.C) {
proxySettings, _ := s.useJujuConfig(c)
s.config.InProcessUpdate = func(newSettings proxy.Settings) error {
select {
case s.inProcSettings <- newSettings:
case <-time.After(coretesting.LongWait):
panic("couldn't send settings on inProcSettings channel")
}
return errors.New("gone daddy gone")
}
var logWriter loggo.TestWriter
c.Assert(loggo.RegisterWriter("proxyupdater-tests", &logWriter), jc.ErrorIsNil)
defer func() {
loggo.RemoveWriter("proxyupdater-tests")
logWriter.Clear()
}()
updater, err := proxyupdater.NewWorker(s.config)
c.Assert(err, jc.ErrorIsNil)
s.waitProxySettings(c, proxySettings)
workertest.CleanKill(c, updater)
var foundMessage bool
expectedMessage := "error updating in-process proxy settings: gone daddy gone"
for _, entry := range logWriter.Log() {
if entry.Level == loggo.ERROR && strings.Contains(entry.Message, expectedMessage) {
foundMessage = true
break
}
}
c.Assert(foundMessage, jc.IsTrue)
}
func nextCall(c *gc.C, calls <-chan []string) []string {
select {
case call := <-calls:
return call
case <-time.After(coretesting.LongWait):
c.Fatalf("run func not called")
}
panic("unreachable")
}
func (s *ProxyUpdaterSuite) TestSnapProxySetNoneSet(c *gc.C) {
if host := jujuos.HostOS(); host == jujuos.CentOS {
c.Skip(fmt.Sprintf("snap settings not handled on %s", host.String()))
}
logger := s.config.Logger
calls := make(chan []string)
s.config.RunFunc = func(in string, cmd string, args ...string) (string, error) {
logger.Debugf("RunFunc(%q, %q, %#v)", in, cmd, args)
calls <- append([]string{in, cmd}, args...)
return "", nil
}
s.api.proxies = proxyupdaterapi.ProxyConfiguration{}
updater, err := proxyupdater.NewWorker(s.config)
c.Assert(err, jc.ErrorIsNil)
defer workertest.CleanKill(c, updater)
// The worker doesn't precheck any of the snap proxy values, as it is expected
// that the set call is cheap. Every time the worker starts, we call set for the current
// values.
c.Assert(nextCall(c, calls), jc.DeepEquals, []string{"", "snap", "set", "system",
"proxy.http=",
"proxy.https=",
"proxy.store=",
})
}
func (s *ProxyUpdaterSuite) TestSnapProxySet(c *gc.C) {
if host := jujuos.HostOS(); host == jujuos.CentOS {
c.Skip(fmt.Sprintf("snap settings not handled on %s", host.String()))
}
logger := s.config.Logger
calls := make(chan []string)
s.config.RunFunc = func(in string, cmd string, args ...string) (string, error) {
logger.Debugf("RunFunc(%q, %q, %#v)", in, cmd, args)
calls <- append([]string{in, cmd}, args...)
return "", nil
}
s.api.proxies = proxyupdaterapi.ProxyConfiguration{
SnapProxy: proxy.Settings{
Http: "http://snap-proxy",
Https: "https://snap-proxy",
},
}
updater, err := proxyupdater.NewWorker(s.config)
c.Assert(err, jc.ErrorIsNil)
defer workertest.CleanKill(c, updater)
// The snap store is set to the empty string because as the agent is starting
// and it doesn't check to see what the store was set to, so to be sure, it just
// calls the set value.
c.Assert(nextCall(c, calls), jc.DeepEquals, []string{"", "snap", "set", "system",
"proxy.http=http://snap-proxy",
"proxy.https=https://snap-proxy",
"proxy.store=",
})
}
func (s *ProxyUpdaterSuite) TestSnapStoreProxy(c *gc.C) {
if host := jujuos.HostOS(); host == jujuos.CentOS {
c.Skip(fmt.Sprintf("snap settings not handled on %s", host.String()))
}
logger := s.config.Logger
calls := make(chan []string)
s.config.RunFunc = func(in string, cmd string, args ...string) (string, error) {
logger.Debugf("RunFunc(%q, %q, %#v)", in, cmd, args)
calls <- append([]string{in, cmd}, args...)
return "", nil
}
s.api.proxies = proxyupdaterapi.ProxyConfiguration{
SnapStoreProxyId: "42",
SnapStoreProxyAssertions: "please trust us",
}
updater, err := proxyupdater.NewWorker(s.config)
c.Assert(err, jc.ErrorIsNil)
defer workertest.CleanKill(c, updater)
c.Assert(nextCall(c, calls), jc.DeepEquals, []string{"please trust us", "snap", "ack", "/dev/stdin"})
// The http and https proxy values are set to be empty as it is the first pass through.
c.Assert(nextCall(c, calls), jc.DeepEquals, []string{"", "snap", "set", "system",
"proxy.http=",
"proxy.https=",
"proxy.store=42",
})
}
func (s *ProxyUpdaterSuite) TestSnapStoreProxyURL(c *gc.C) {
if host := jujuos.HostOS(); host == jujuos.CentOS {
c.Skip(fmt.Sprintf("snap settings not handled on %s", host.String()))
}
logger := s.config.Logger
calls := make(chan []string)
s.config.RunFunc = func(in string, cmd string, args ...string) (string, error) {
logger.Debugf("RunFunc(%q, %q, %#v)", in, cmd, args)
calls <- append([]string{in, cmd}, args...)
return "", nil
}
var (
srv *httptest.Server
proxyRes = `
type: store
authority-id: canonical
store: WhatDoesTheBigRedButtonDo
operator-id: 0123456789067OdMqoW9YLp3e0EgakQf
timestamp: 2019-08-27T12:20:45.166790Z
url: $url
sign-key-sha3-384: BWDEoaqyr25nF5SNCvEv2v7QnM9QsfCc0PBMYD_i2NGSQ32EF2d4D0hqUel3m8ul
DATA...
DATA...
`
)
srv = httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
_, _ = w.Write([]byte(proxyRes))
}))
proxyRes = strings.Replace(proxyRes, "$url", srv.URL, -1)
defer srv.Close()
s.api.proxies = proxyupdaterapi.ProxyConfiguration{
SnapStoreProxyURL: srv.URL,
}
updater, err := proxyupdater.NewWorker(s.config)
c.Assert(err, jc.ErrorIsNil)
defer workertest.CleanKill(c, updater)
c.Assert(nextCall(c, calls), jc.DeepEquals, []string{proxyRes, "snap", "ack", "/dev/stdin"})
// The http and https proxy values are set to be empty as it is the first pass through.
c.Assert(nextCall(c, calls), jc.DeepEquals, []string{"", "snap", "set", "system",
"proxy.http=",
"proxy.https=",
"proxy.store=WhatDoesTheBigRedButtonDo",
})
}
func (s *ProxyUpdaterSuite) TestSnapStoreProxyURLOverridesManualAssertion(c *gc.C) {
if host := jujuos.HostOS(); host == jujuos.CentOS {
c.Skip(fmt.Sprintf("snap settings not handled on %s", host.String()))
}
logger := s.config.Logger
calls := make(chan []string)
s.config.RunFunc = func(in string, cmd string, args ...string) (string, error) {
logger.Debugf("RunFunc(%q, %q, %#v)", in, cmd, args)
calls <- append([]string{in, cmd}, args...)
return "", nil
}
var (
srv *httptest.Server
proxyRes = `
type: store
authority-id: canonical
store: WhatDoesTheBigRedButtonDo
operator-id: 0123456789067OdMqoW9YLp3e0EgakQf
timestamp: 2019-08-27T12:20:45.166790Z
url: $url
sign-key-sha3-384: BWDEoaqyr25nF5SNCvEv2v7QnM9QsfCc0PBMYD_i2NGSQ32EF2d4D0hqUel3m8ul
DATA...
DATA...
`
)
srv = httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
_, _ = w.Write([]byte(proxyRes))
}))
proxyRes = strings.Replace(proxyRes, "$url", srv.URL, -1)
defer srv.Close()
s.api.proxies = proxyupdaterapi.ProxyConfiguration{
SnapStoreProxyId: "42",
SnapStoreProxyAssertions: "please trust us",
SnapStoreProxyURL: srv.URL,
}
updater, err := proxyupdater.NewWorker(s.config)
c.Assert(err, jc.ErrorIsNil)
defer workertest.CleanKill(c, updater)
c.Assert(nextCall(c, calls), jc.DeepEquals, []string{proxyRes, "snap", "ack", "/dev/stdin"})
// The http and https proxy values are set to be empty as it is the first pass through.
c.Assert(nextCall(c, calls), jc.DeepEquals, []string{"", "snap", "set", "system",
"proxy.http=",
"proxy.https=",
"proxy.store=WhatDoesTheBigRedButtonDo",
})
}
func (s *ProxyUpdaterSuite) TestAptMirror(c *gc.C) {
if host := jujuos.HostOS(); host == jujuos.CentOS {
c.Skip(fmt.Sprintf("apt mirror not supported on %s", host.String()))
}
logger := s.config.Logger
calls := make(chan []string)
s.config.RunFunc = func(in string, cmd string, args ...string) (string, error) {
logger.Debugf("RunFunc(%q, %q, %#v)", in, cmd, args)
calls <- append([]string{in, cmd}, args...)
return "", nil
}
s.api.proxies = proxyupdaterapi.ProxyConfiguration{
AptMirror: "http://mirror",
}
updater, err := proxyupdater.NewWorker(s.config)
c.Assert(err, jc.ErrorIsNil)
defer workertest.CleanKill(c, updater)
c.Assert(nextCall(c, calls), jc.DeepEquals, []string{"", "snap", "set", "system",
"proxy.http=",
"proxy.https=",
"proxy.store=",
})
c.Assert(nextCall(c, calls), jc.DeepEquals, []string{"", "/bin/bash", "-c", `
#!/bin/bash
set -e
(
old_archive_mirror=$(awk "/^deb .* $(awk -F= '/DISTRIB_CODENAME=/ {gsub(/"/,""); print $2}' /etc/lsb-release) .*main.*\$/{print \$2;exit}" /etc/apt/sources.list)
new_archive_mirror=http://mirror
sed -i s,$old_archive_mirror,$new_archive_mirror, /etc/apt/sources.list
old_prefix=/var/lib/apt/lists/$(echo $old_archive_mirror | sed 's,.*://,,' | sed 's,/$,,' | tr / _)
new_prefix=/var/lib/apt/lists/$(echo $new_archive_mirror | sed 's,.*://,,' | sed 's,/$,,' | tr / _)
[ "$old_prefix" != "$new_prefix" ] &&
for old in ${old_prefix}_*; do
new=$(echo $old | sed s,^$old_prefix,$new_prefix,)
if [ -f $old ]; then
mv $old $new
fi
done
old_security_mirror=$(awk "/^deb .* $(awk -F= '/DISTRIB_CODENAME=/ {gsub(/"/,""); print $2}' /etc/lsb-release)-security .*main.*\$/{print \$2;exit}" /etc/apt/sources.list)
new_security_mirror=http://mirror
sed -i s,$old_security_mirror,$new_security_mirror, /etc/apt/sources.list
old_prefix=/var/lib/apt/lists/$(echo $old_security_mirror | sed 's,.*://,,' | sed 's,/$,,' | tr / _)
new_prefix=/var/lib/apt/lists/$(echo $new_security_mirror | sed 's,.*://,,' | sed 's,/$,,' | tr / _)
[ "$old_prefix" != "$new_prefix" ] &&
for old in ${old_prefix}_*; do
new=$(echo $old | sed s,^$old_prefix,$new_prefix,)
if [ -f $old ]; then
mv $old $new
fi
done
)`[1:],
})
}