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
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
|
lxc (0.8.0~rc1-4ubuntu29) UNRELEASED; urgency=low
* fix lxcapi_start to not return true when it container failed to start.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Thu, 23 Aug 2012 21:01:57 -0500
lxc (0.8.0~rc1-4ubuntu28) quantal; urgency=low
[ Stéphane Graber ]
* Merge liblxc changes:
- Build-depend on automake as autogen.sh is now run at build time.
- Introduce new liblxc0 binary package
- Make lxc to depend on liblxc0
- Move library to the new binary package
- Change libdir to be the public multi-arch path
- Build with --disable-rpath
- Move all the test binaries to a lxc-test-* namespace
* Merge python3-lxc changes:
- Introduce new python3-lxc binary package
- Update debian/rules to build the python3 code
* Update lxc-start-ephemeral:
- Replace tabs by 4 spaces, fix indentation
- Fix code to work properly as non-root (calling sudo where needed)
[ Serge Hallyn ]
* confile.c: support hooks in save_config().
* conf.h: Add array of hook names
-- Stéphane Graber <stgraber@ubuntu.com> Wed, 22 Aug 2012 11:50:51 -0400
lxc (0.8.0~rc1-4ubuntu27) quantal; urgency=low
* Add patches from mailing list to support per-namespace attach with
lxc-attach.
- 0104-add-option-to-lxc-attach-to-select-ns
- 0105-lxc-attach-add-R-option
-- Serge Hallyn <serge.hallyn@ubuntu.com> Tue, 21 Aug 2012 16:10:08 -0500
lxc (0.8.0~rc1-4ubuntu26) quantal; urgency=low
* 0100-template-cleanup-cache: clean up template cache if interrupted
during build. (LP: #1037331)
* 0101-template-empty-apt-cache: do an apt-cache clean after creating
a new cache. (LP: #1037626)
* 0102-lxc-start-d-check-privs: exit early (with failure) if starting a
daemonized container with insufficient privilege. (LP: #918327)
* 0103-make-rootfs-location-optional: allow custom location for a
container rootfs to be specified. (LP: #1019398)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Fri, 17 Aug 2012 09:44:02 -0500
lxc (0.8.0~rc1-4ubuntu25) quantal; urgency=low
* debian/control: only depend on libseccomp-dev on i386 and amd64, and
switch to upstream-submitted seccomp patch (LP: #1037701)
* debian/rules: add '--with autoreconf' to force recreation of
configure from configure.ac
* 0099-cleanup-after-template-help: don't leave a partially created
container when -h is passed after '--'. (LP: #1031043)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Thu, 16 Aug 2012 17:03:07 -0500
lxc (0.8.0~rc1-4ubuntu24) quantal; urgency=low
* lxc-start-ephemeral: use unionfs only for the rootfs itself
(LP: #959352)
* allow config files to include other config files.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Tue, 14 Aug 2012 13:11:24 +0000
lxc (0.8.0~rc1-4ubuntu23) quantal; urgency=low
* fix FTBFS
- add libseccomp to build-deps
- add autoreconf to build-deps to regenerate Makefile.in at build time.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Wed, 08 Aug 2012 18:11:21 -0500
lxc (0.8.0~rc1-4ubuntu22) quantal; urgency=low
[ Stéphane Graber ]
* Fix call to echo in lxc-start-ephemeral that was literally showing
'$LXC_BASE' instead of the variable's value.
[ Serge Hallyn ]
* Introduce support for seccomp.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Wed, 08 Aug 2012 10:43:06 -0500
lxc (0.8.0~rc1-4ubuntu21) quantal; urgency=low
[ Stéphane Graber ]
* Fix lxc-ubuntu and lxc-ubuntu-cloud to fix the /dev/shm workaround to only
trigger when /dev/shm is not a symlink. (LP: #974584)
[ Serge Hallyn ]
* lxc.lxc-net.upstart: replace the check for USE_LXC_BRIDGE (which could be
changed from true to false after starting lxc-net) with one for the
existence /var/run/lxc. (LP: #1019290)
* 0095-lxc-clone-change-uuid-on-xfs.patch: give each cloned xfs-backed
lvm partition a unique uuid so they can be mounted simultaneously.
(LP: #1013549)
* 0096-lxc-wait-add-timeout.patch: patch submitted upstream to add a timeout
option to lxc-wait. (LP: #1020179)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Thu, 26 Jul 2012 17:40:36 +0000
lxc (0.8.0~rc1-4ubuntu20) quantal; urgency=low
[ Stéphane Graber ]
* debian/apparmor/lxc-default-with-nesting: allow mounting /proc and /sys
so containers can be created.
[ Serge Hallyn ]
* 0093-lxc-clone-copy-fstab: fix updating of lxc.mount entries in lxc-clone
-- Serge Hallyn <serge.hallyn@ubuntu.com> Fri, 20 Jul 2012 09:38:35 -0500
lxc (0.8.0~rc1-4ubuntu19) quantal; urgency=low
* Move /etc/apparmor.d/abstractions/lxc-* to /etc/apparmor.d/abstractions/lxc/
- Rename lxc-container-default to container-base
- Rename lxc-start-container to start-container
- Update references
* Allow write access to /proc/sys/kernel/shm* as these are namespaced (IPC).
-- Stéphane Graber <stgraber@ubuntu.com> Thu, 05 Jul 2012 12:02:19 -0400
lxc (0.8.0~rc1-4ubuntu18) quantal; urgency=low
* Patch lxc-clone to stop messing with dhclient.conf when it contains a
placeholder (<hostname> or gethostname()). Fixes cases where dpkg will
prompt for modified config file on upgrade.
-- Stéphane Graber <stgraber@ubuntu.com> Tue, 03 Jul 2012 17:57:27 -0400
lxc (0.8.0~rc1-4ubuntu17) quantal-proposed; urgency=low
[ Stéphane Graber ]
* 0090-lxc-ubuntu-use-dpkg-add-architecture: Update lxc-ubuntu
template to use "dpkg --add-architecture" in containers running
dpkg >= 1.16.2. (LP: #1017862)
[ Serge Hallyn ]
* 0091-introduce-container-hooks.patch: introduce container hooks at several
points in the container life-cycle.
* Add copyright statement to lxc-aa-custom-profile
* Add debian/hooks/mountcgroups as an example (installed under
/usr/share/lxc/hooks)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Tue, 26 Jun 2012 13:04:01 -0500
lxc (0.8.0~rc1-4ubuntu16) quantal; urgency=low
* Update debian/local/lxc-list to only list every container once
and to support both the Debian and Ubuntu way of marking a container
as auto-started.
* Depend on adduser as it's being used in postinst.
* Fix lintian-overrides syntax and silence no-debconf-templates.
* Only run dh_apparmor against the lxc package.
* Don't override /var/log/lxc as 700, there's no good reason for that.
-- Stéphane Graber <stgraber@ubuntu.com> Mon, 25 Jun 2012 15:00:01 -0400
lxc (0.8.0~rc1-4ubuntu15) quantal; urgency=low
[ Serge Hallyn ]
* Add 'lxc-aa-custom-profile' command to make it easier to start using a
cusom profile for a container.
[ Stéphane Graber ]
* Update apparmor profiles to fix nesting:
- Allow fstype=cgroup mounts for lxc-default-with-nesting
- Only prevent mounting devpts for lxc-default and not
in lxc-default-with-nesting as it's required to spawn containers.
-- Stéphane Graber <stgraber@ubuntu.com> Mon, 25 Jun 2012 01:34:12 -0400
lxc (0.8.0~rc1-4ubuntu14) quantal; urgency=low
* Apparmor profile update:
- Move lxc-start profile content to abstractions/lxc-start-container
- Move lxc-default profile content to abstractions/lxc/container-default
- Include the abstractions
- Update lxc-default-with-nesting to include both abstractions
- Allow fstype=fuse.*, for all containers
-- Stéphane Graber <stgraber@ubuntu.com> Tue, 19 Jun 2012 15:13:23 +0000
lxc (0.8.0~rc1-4ubuntu13) quantal; urgency=low
* 0086-lxc-unshare-zero-args: fix lxc-unshare segfaulting when no command
is given (LP: #1011603)
* 0087-lxc-ls-dash: fix lxc-ls for containers whose names start with a
dash (LP: #1006332)
* 0088-ubuntu-template-flock: don't fail when flock is busy, just wait,
so concurrent lxc-creates don't break. (LP: #1007483)
* 0089-lxc-netstat-exec: fix lxc-netstat errors (LP: #1011739)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Mon, 11 Jun 2012 15:46:25 +0000
lxc (0.8.0~rc1-4ubuntu12) quantal; urgency=low
* Fix broken logic in lxc-ubuntu template where lxc.devttydir would be
set to 'lxc' only for releases that don't support it. (LP: #1007493)
-- Stéphane Graber <stgraber@ubuntu.com> Fri, 01 Jun 2012 11:57:44 -0400
lxc (0.8.0~rc1-4ubuntu11) quantal; urgency=low
* add apport hook
-- Serge Hallyn <serge.hallyn@ubuntu.com> Fri, 01 Jun 2012 08:13:03 -0500
lxc (0.8.0~rc1-4ubuntu10) quantal; urgency=low
[ Serge Hallyn ]
* 0084-lxc-ubuntu-drop-duplicate-code.patch: drop some duplicate code from
the ubuntu template. (LP: #1004118)
* 0085-pivot-dir: use a directory other than /mnt to put the pivot_root
old dir into (LP: #986385)
[ Stéphane Graber ]
* Ship /etc/dnsmasq.d/lxc to configure an eventual system wide
dnsmasq daemon not to listen on the LXC bridge interface. (LP: #928524)
* Drop rm calls from postrm for apparmor rules, these were in the purge
target so didn't really serve any purpose.
-- Stéphane Graber <stgraber@ubuntu.com> Tue, 29 May 2012 16:56:25 -0400
lxc (0.8.0~rc1-4ubuntu9) quantal; urgency=low
* debian/lxc-net.upstart: don't put '()' after call to cleanup.
(LP: #1000174)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Mon, 21 May 2012 08:26:25 -0700
lxc (0.8.0~rc1-4ubuntu8) quantal; urgency=low
* Update lxc-ubuntu:
- Update list of extra packages for debootstrap to only include vim
and ssh. The others were only relevant when we were still using the
minbase variant. (LP: #996839)
- Drop any hardcoded Ubuntu version check and replace by feature
checks instead.
- Format lxc-ubuntu to consistently use 4-spaces indent instead of
mixed spaces/tabs.
- Update default /etc/network/interfaces to include the header.
- Update default /etc/hosts to match that of a regular Ubuntu system.
- Drop support for end-of-life releases (gutsy on sparc).
- Make sure /etc/resolv.conf is valid before running any apt command.
- Update template help message for release and arch parameters.
- Switch default Ubuntu version from lucid to precise.
* Update lxc-start-ephemeral:
- Remove lxc-ip and replace it by a call to "ip netns" until we have
an extended lxc-attach we can use for that.
- Fix a race in lxc-start-ephemeral where the container isn't yet
running when trying to get its IPs.
- Update a few calls so that lxc-start-ephemeral can be called as a
user (ensure consistent usage of sudo across the script).
* Add new lxc-default-with-nesting apparmor profile, allowing nested
containers.
-- Stéphane Graber <stgraber@ubuntu.com> Fri, 18 May 2012 19:05:44 -0400
lxc (0.8.0~rc1-4ubuntu7) quantal; urgency=low
[ Francesco Banconi ]
* Introduced lxc-ip: retrieve the ip addresses of a container.
* lxc-start-ephemeral: use lxc-ip to ssh to the container (LP: #994752).
-- Serge Hallyn <serge.hallyn@ubuntu.com> Wed, 16 May 2012 10:46:21 -0500
lxc (0.8.0~rc1-4ubuntu6) quantal; urgency=low
* debian/control: add apparmor to lxc Depends (LP: #997681)
* debian/local/lxc-start-ephemeral: quote $line so its contents don't get
expanded (LP: #997687)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Thu, 10 May 2012 09:04:29 -0700
lxc (0.8.0~rc1-4ubuntu5) quantal; urgency=low
* 0082-umount-old-proc: fix proc auto-mount. If /proc is already mounted,
make sure that /proc/self points to 1, since we are container init.
Otherwise, assume proc is an old one, and umount it and remount our own.
If we keep the old proc mounted, apparmor transitions will by tried for
wrong task and fail. Also move check for whether apparmor is enabled so
that it is called by lxc-execute. (LP: #993706)
* update 0074-lxc-execute-find-init to look for lxc-init in
LXCINITDIR/lxc/lxc-init
* debian/control: add cloud-utils to lxc Recommends, as lxc-ubuntu-cloud
needs it. (LP: 995361)
* debian/lxc.upstart: load apparmor profiles before auto-starting containers.
(LP: #989853)
* pop 06-bash.patch and 0075-lxc-ls-bash. lxc-clone also has bashims, just
stick to using bash until upstream is also converted (so we are safe
against patches).
-- Serge Hallyn <serge.hallyn@ubuntu.com> Mon, 07 May 2012 21:22:26 +0000
lxc (0.8.0~rc1-4ubuntu4) quantal; urgency=low
* Fix Ubuntu template to install the host architecture of the required
mutli-arch packages (when using qemu-user-static) instead of hardcoded
"amd64" version.
-- Stéphane Graber <stgraber@ubuntu.com> Fri, 04 May 2012 23:21:22 -0400
lxc (0.8.0~rc1-4ubuntu3) quantal; urgency=low
* Add support for quantal in lxc-ubuntu and lxc-ubuntucloud
* Drop support for maverick in lxc-ubuntu and lxc-ubuntucloud
-- Stéphane Graber <stgraber@ubuntu.com> Wed, 02 May 2012 21:28:11 -0400
lxc (0.8.0~rc1-4ubuntu2) quantal; urgency=low
* lxc-clone: put quotes around $line to avoid expansion (LP: #993515)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Wed, 02 May 2012 15:23:52 -0500
lxc (0.8.0~rc1-4ubuntu1) quantal; urgency=low
* Merge from unstable. Remaining changes:
- control:
- update maintainer
- Build-Depends: add dh-apparmor and libapparmor-dev
- lxc Depends: add bridge-utils, dnsmasq-base, iptables, rsync
- lxc Recommends: add cgroup-lite | cgroup-bin, openssl
- lxc Suggests: add btrfs-tools, lvm2, qemu-user-static
- lxc Conflicts: remove (cgroup-bin)
- Add lxc-start-ephemeral and lxc-wait to debian/local
- apparmor:
- add lxc.apparmor, lxc-containers.apparmor,
lxc-default.apparmor, and new lxc.apparmor.in
- add debian/lxc.conf (default container creation config file)
- debian/lxc.install.in:
* add lxc-start-ephemeral
* add debian/lxc.conf
* skip lxc-debconf*
* skip lxc-ls (Use upstream's)
- debian/lxc*.install.in: use '*', not @DEB_HOST_MULTIARCH@
- Use our own completely different lxc.postinst and lxc.postrm
- remove lxc.templates
- debian/rules:
* add DEB_DH_INSTALLINIT_ARGS = --upstart-only
* don't do debconf stuff
* add debian/*.apparmor.in to files processed under
override_dh_auto_clean
* don't comment out ubuntu or busybox templates
* do apparmor stuff and install our own lxc-wait under override_dh_install
* install our upstart scripts in override_dh_installinit
- add lxc.default, lxc.lxc-net.upstart, lxc.upstart under
debian/
* patches kept:
- 0013-lxc-create-use-default-config.patch (needed manual rebase)
- 0030-ubuntu-template-fail.patch
- 0031-ubuntu-template-resolvconf.patch
- 0044-lxc-destroy-rm-autos
- debian/patches/0045-fix-other-templates
- debian/patches/0046-lxc-clone-change-hwaddr
- debian/patches/0047-bindhome-check-shell
- debian/patches/0049-ubuntu-template-sudo-and-cleanup
- debian/patches/0050-clone-lvm-sizes
- debian/patches/0052-ubuntu-bind-user-conflict
- debian/patches/0053-lxc-start-pin-rootfs
- debian/patches/0054-ubuntu-debug
- debian/patches/0055-ubuntu-handle-badgrp
- debian/patches/0056-dont-watch-utmp
- debian/patches/0057-update-manpages
- debian/patches/0058-fixup-ubuntu-cloud
- debian/patches/0059-reenable-daily-cloudimg
- debian/patches/0060-lxc-shutdown
- debian/patches/0061-lxc-start-apparmor
- debian/patches/0062-templates-relative-paths
- debian/patches/0063-check-apparmor-enabled
- debian/patches/0064-apparmor-mount-proc
- debian/patches/0065-fix-bindhome-relpath
- debian/patches/0066-confile-typo
- debian/patches/0067-templates-lxc-profile
- debian/patches/0068-fix-lxc-config-layout
- debian/patches/0069-ubuntu-cloud-fix
- debian/patches/0070-templates-rmdir-dev-shm
- debian/patches/0071-ubuntu-cloud-fix-image-extraction
- debian/patches/0072-lxc-shutdown-help
- debian/patches/0073-lxc-destroy-waits-before-destroy
- mark all patches which have been forwarded as such, refresh all
* 0074-lxc-execute-find-init: lxc-init had moved. Introduce a function in
lxc-execute to go find it. Otherwise lxc-execute for any older releases
will fail.
* 0075-lxc-ls-bash: lxc-ls needs bash, not sh
* add debian/lxc.apparmor.in so DEB_HOST_MULTIARCH can be expanded
* 0076-fix-sprintfs: - check return values for all sprintfs and snprintfs
which could overflow (LP: #988918)
* 0077-execute-without-rootfs: let lxc-execute succeed with no rootfs
(LP: #981955)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Thu, 26 Apr 2012 15:18:35 -0500
lxc (0.8.0~rc1-4) unstable; urgency=low
* Correcting spelling typo in debconf templates (Closes: #663547).
* Adding updated French debconf translations from Christian Perrier
<bubulle@debian.org> (Closes: #663546).
* Moving architecture independent files from /usr/lib/*/lxc to
/usr/share/lxc (Closes: #664160).
* Correcting multiarch conditional typo in rules.
* Creating lxc directories in a dangling symlink proof way in order to
respect sysadmins decisions for temporary incomplete deployments.
* Adding patch to avoid messing with rootfs directory creation in lxc-
create where its not required (Closes: #664159).
* Adding updated Spanish debconf translations from Camaleón
<noelamac@gmail.com> (Closes: #665366).
* Adding updated Russian debconf translations from Yuri Kozlov
<yuray@komyakino.ru> (Closes: #665370).
* Also setting libexedir via configure argument which in turn will set
lxcinitdir properly on multiarch (Closes: #664764).
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Tue, 10 Apr 2012 20:04:36 +0200
lxc (0.8.0~rc1-3) unstable; urgency=low
* Adding pre-depends to multiarch-support (Closes: #663274).
* Updating lintian overrides.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Sat, 10 Mar 2012 09:51:28 +0100
lxc (0.8.0~rc1-2) unstable; urgency=low
* Helping to migrate lxc-shutdown debconf setting for alternative on
upgrades from 0.7.5 to 0.8.0.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Fri, 09 Mar 2012 15:27:21 +0100
lxc (0.8.0~rc1-1) unstable; urgency=low
* Adding updated Spanish debconf translations from Camaleón
<noelamac@gmail.com> (Closes: #658362).
* Adding patch from Ivan Vilata i Balaguer <ivan@selidor.net> to allow
the escape prefix to escape itself in lxc-console (Closes: #659011).
* Adding late host command in addition to late command in lxc-debconf.
* Setting default action for lxc shutdown to halt as it's almost
always safe and better for data integrity (e.g. some database
servers need a regular sysvinit shutdown).
* Replacing configuration variable in /etc/default/lxc for default
shutdown method with a alternative /usr/bin/lxc-shutdown, pointing
to either /usr/bin/lxc-halt or /usr/bin/lxc-stop.
* Updating todo file.
* Disabling numbered backups for the time being in lxc-backup and lxc-
restore, they are for simple prototyping only anyway.
* Adding Dutch debconf translations from Jeroen Schot <schot@a-
eskwadraat.nl> (Closes: #659694).
* Merging upstream version 0.8.0~rc1.
* Rediffing lxc-libdir.patch.
* Rediffing lxc-configuration-path.patch.
* Rediffing bash.patch.
* Rediffing lxc-debconf.patch.
* Rediffing lxc-create-trap-name.patch.
* Rediffing lxc-clone-trap-name.patch.
* Removing currently unsupported lxc-ubuntu until lxc-debconf also
supports ubuntu (Closes: #660764).
* Updating packaging for multiarch.
* Updating to standards version 3.9.3.
* Updating copyright file machine-readable format version 1.0.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Fri, 09 Mar 2012 13:05:03 +0100
lxc (0.7.5-24) unstable; urgency=low
* Switching to cdn.archive.progress-linux.org in lxc-debconf as
default mirror for progress.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Fri, 03 Feb 2012 22:23:00 +0100
lxc (0.7.5-23) unstable; urgency=low
* Also listing frozen containers in lxc-list.
* Adding example entry about translations in apt.conf of progress mode
in lxc-debconf.
* Not upgrading users /etc/default/lxc file and leave any unused cruft
in there to rot (Closes: #657654).
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Fri, 27 Jan 2012 21:38:14 +0100
lxc (0.7.5-22) unstable; urgency=low
* Handling dangling symlinks to config files in init script.
* Correcting wrong preseed file reference when checking for tzdata in
lxc-debconf.
* Using noninteractive frontend and critical priority for tzdata
reconfiguration in lxc-debconf.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Tue, 24 Jan 2012 12:17:31 +0100
lxc (0.7.5-21) unstable; urgency=low
* Disabling console log by default in lxc-debconf again, might confuse
users too much.
* Automatically creating directories specified in mount entries in
lxc-debconf.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Mon, 23 Jan 2012 11:19:56 +0100
lxc (0.7.5-20) unstable; urgency=low
* Correcting and simplyfing creation of lxc directories in /etc.
* Enabling console log file in default config of lxc-debconf.
* Allowing to use a global cache from /usr/lib/lxc/cache rather than
local ones only in /var/lib/cache.
* Updating bash.patch to cover lxc-checkconfig more extensively in
getting rid of bashisms, thanks to Philipp Matthias Hahn
<pmhahn@debian.org> (Closes: #655902).
* Allowing system cache to be an unpacked directory too, not just
tarballs only.
* Updating to debhelper version 9.
* Updating todo file.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Sat, 21 Jan 2012 17:32:18 +0100
lxc (0.7.5-19) unstable; urgency=low
* Updating lintian overrides.
* Calling apt-get clean after upgrading caches in lxc-debconf.
* Using systems apt cache in lxc-debconf.
* Correcting s/parent-archives-areas/parent-archive-areas/ typo in
lxc-debconf (Closes: #655176).
* Renaming lxc-create.patch to lxc-create-template-name.patch.
* Adding patch to correct signal names in lxc-create trap (Closes:
#655173).
* Adding patch to correct signal names in lxc-clone trap.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Mon, 09 Jan 2012 16:13:39 +0100
lxc (0.7.5-18) unstable; urgency=low
* Updating lxc-debconf example preseed files.
* Updating lxc bash completion.
* Avoid using debconf frontend names with capital letter in lxc-
debconf.
* Adding 'automatic' mount entries for shared directories in lxc-
debconf only if no manual one has being preseeded.
* Correct wrong debconf handling for mount entries in lxc-debconf.
* Reconfigure tzdata when using preseeding in lxc-debconf.
* Updating year in copyright file.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Sun, 08 Jan 2012 13:30:37 +0100
lxc (0.7.5-17) unstable; urgency=low
* Adding updated French debconf templates from Christian Perrier
<bubulle@debian.org> (Closes: #653340).
* Replacing incomplete patch for fixing lxc-ls and ship an own and
simple lxc-ls instead.
* Removing sorting from lxc-list since lxc-ls now already provides
output sorted.
* Using stderr for error messages in local lxc commands.
* Adding support for preseedable mount entries in config for lxc-
debconf.
* Correcting incorrect defaults choices when asking for archive areas
in lxc-debconf.
* Adding support for fine graned archive control wrt/ security,
volatile, and backports in lxc-debconf.
* Shuffling stuff around to keep cache minimal and allow archive
selection to be effective for postconfig in lxc-debconf.
* Correcting some defaults in lxc-debconf.
* Removing /etc/hostname prior postconfig in order to actually set the
hostname in postconfig in lxc-debconf.
* Also setting architecture in config of lxc-debconf even if container
is i386 and host is i386 too, to ensures that i386 containers on
i386 hosts can be moved to amd64 without needing to touch the config
file.
* Creating empty /etc/lxc/debconf directory.
* Correcting handling of debconf defaults for internal options in lxc-
debconf.
* Updating preseed example files.
* Updating todo file.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Wed, 28 Dec 2011 08:10:28 +0100
lxc (0.7.5-16) unstable; urgency=low
* Only looking in lxc-debconf for files in /etc/lxc/debconf if the
directory exists.
* Adding patch to avoid using bash in lxc commands.
* Adding patch to lxc-netstat to use -- as seperator, otherwise -n
from lxc-netstat collides with netstats -n option (Closes: #641251).
* Adding patch for lxc-create to not give vendor specific template
advice.
* Removing openssh-server from progress default package list in lxc-
debconf.
* Removing lenny support from lxc-debconf as lenny is going to be
unsupported really soon now.
* Avoid asking for security mirror and backports mirror for progress
and use normal mirror for it in lxc-debconf.
* Correcting wrong fallback defaults if user removes suggested value
in debconf question when asking parent mirrors in lxc-debconf.
* Simplyfing automatic fallback defaults for child security and child
backports mirror in lxc-debconf.
* Not including tap in lxc-debconf default config.
* Adding support for archive area selection in lxc-debconf.
* Adding updated Russian debconf templates from Yuri Kozlov
<yuray@komyakino.ru> (Closes: #652430).
* Adding patch to only list directories in lxc-ls (Closes: #629409).
* Regenerating debconf files.
* Adding preseed only option for capabilties dropping in lxc config
files of lxc-debconf.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Mon, 26 Dec 2011 12:13:07 +0100
lxc (0.7.5-15) unstable; urgency=low
* Adding updated bash completion for lxc from Gaé Lucas
<gaetanlcs@gmail.com> which now includes completion for the lxc
convenience wrapper.
* Replacing tabs with one whitespace in preseed examples for lxc-
debconf as there seems to be some problems with it otherwise.
* Avoid compressing preseed example files.
* Stopping to support both container configs with and without .conf
suffix in /etc/lxc/auto, in order to have unique configs they should
be named exactely like the container with no artificial suffix.
* Letting user choose from existing preseed files from
/etc/lxc/decbonf in lxc-debconf.
* Updating todo file.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Mon, 12 Dec 2011 12:14:28 +0100
lxc (0.7.5-14) unstable; urgency=low
* Adding quotes in some eval calls in lxc-debconf to make sure values
with whitespaces are treated correctly.
* Using LC_ALL=C when executing calls in chroot of lxc-debconf.
* Also including ftp_proxy and http_proxy in lxc-debconfs chroot
environment (Closes: #651477).
* Correcting copy/paste error in lxc-debconf when setting empty
default mac address.
* Updating preseed examples for lxc-debconf.
* Adding bash completion for lxc from Gaé Lucas <gaetanlcs@gmail.com>.
* Streamlining bash-completion file a bit.
* Correcting wrong auto variable in lxc-debconf.
* Simplyfing architecture detection in lxc-debconf which is always
running on debian based systems anyway.
* Adding support for creating i386 containers on amd64 in lxc-debconf
(Closes: #651616).
* Reorder entries to drop capabilities in default config of lxc-
debconf.
* Updating guessing for shared directories in default config of lxc-
debconf.
* Reorder entry for console log in default config of lxc-debconf.
* Updating preseeding examples for lxc-debconf.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Sat, 10 Dec 2011 23:20:40 +0100
lxc (0.7.5-13) unstable; urgency=low
[ Nik Lutz ]
* Correcting wrong variable for debconf preseed file in lxc-debconf.
* Reordering debconf handling to respect preseed files in lxc-debconf.
* Inserting preseeded bridge and mac in lxc config file for lxc-
debconf.
* Limiting network interface name to 12 characters in lxc-debconf.
[ Daniel Baumann ]
* Streamlining lxc-debconf a bit.
* Enabling access to /dev/tty, this is required for e.g. ssh-ing out
from the container in lxc-debconf.
* Prefering user specified preseed file from commandline option over
debconf question in lxc-debconf.
* Correcting typo in debconf field for the preseeding file in lxc-
debconf.
* Removing distribution switch from lxc-debconf, this can be either
preseeded or choosen through the debconf frontend.
* Adding preseed handling for internal options in lxc-debconf.
* Correcting option handling for internal options in lxc-debconf.
* Asking user for root password (with a random password as suggestion)
in lxc-debconf rather than unconditionally set the random one.
* Correct order for entirely non-interactive preseeding in lxc-
debconf.
* Adding debconf handling for mac and bridge when using multiple
interfaces in lxc-debconf.
* Adding preseed handling for veth name in lxc-debconf.
* Updating lxc-debconf example preseeding files.
* Using single hash for sources.list.d comments in lxc-debconf.
* Enabling comments for network devices in config for lxc-debconf.
* Adding support for mtu in in lxc-debconf.
* Adding updated Swedish debconf translations from Martin Bagge
<brother@bsnet.se> (Closes: #651346).
* Adding support for automatically adding symlinks to /etc/lxc/auto in
lxc-debconf.
* Adding stub manpage for lxc-debconf.
* Adding late command to supported preseeding options in lxc-debconf.
* Updating todo file.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Thu, 08 Dec 2011 14:31:16 +0100
lxc (0.7.5-12) unstable; urgency=low
* Updating preseeding examples for lxc-debconf.
* Using volatile only for lenny and squeeze in lxc-debconf.
* Avoid asking parent mirrors in debian mode of lxc-debconf.
* Allowing access to /dev/pts/* in lxc-debconf default config.
* Correcting yet another occurence of a wrong volatile default mirror
in lxc-debconf.
* If /dev/pts is granted, apparently, access to the tty devices nodes
is not longer necessary (Closes: #650399).
* Adding -n and --name option to lxc-halt to better integrate with the
rest of the lxc tools.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Fri, 02 Dec 2011 07:16:07 +0100
lxc (0.7.5-11) unstable; urgency=low
* Adding /dev/tun in default lxc config in lxc-debconf in ubuntu mode.
* Adding updated Czech debconf translations from Michal Simunek
<michal.simunek@gmail.com> (Closes: #649121).
* Updating /dev/console in default config of lxc-debconf.
* Adjust intending in default config for lxc-debconf.
* Correcting default tty number in default config of lxc-debconf.
* Correct late preseeding in lxc-debconf.
* Correcting backports handling for debian in lxc-debconf.
* Upgrading priority for lxc directory question from low to high to
give it visibility by default (Closes: #650147).
* Adding missing symlink for debian of lxc-debconf.
* Removing double preseed file variable writing in lxc-debconf.
* Avoid wrapping of db_substs calls in lxc-debconf, apparently it
fails on some shell configurations.
* Correcting wrong volatile default url for lenny in lxc-debconf.
* Correcting typo when upgrading system in lxc-debconf.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Thu, 01 Dec 2011 06:41:32 +0100
lxc (0.7.5-10) unstable; urgency=low
* Removing not really working busybox template (Closes: #649193).
* Adding preseed examples for lxc-debconf.
* Adding support for customizable volatile mirrors in lxc-debconf.
* Adding debconf handling for pre-chroot stuff in lxc-debconf by using
private temporary debconf db.
* Adding support for preseeding local repositories in lxc-debconf.
* Use distribution and mode specific list of extra packages in lxc-
debconf.
* Refactor system upgrade mechanism in lxc-debconf.
* Upgrading cache before copying it in lxc-debconf.
* Updating todo file.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Tue, 29 Nov 2011 20:13:20 +0100
lxc (0.7.5-9) unstable; urgency=low
* Splitting out linux-container package into own source package.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Tue, 15 Nov 2011 22:10:17 +0100
lxc (0.7.5-8) unstable; urgency=low
* Adding default comments in fstab when using lxc-debconf.
* Adding temporary dirty worarkound to avoid wrong matches as long as
preseed-files are manually parsed.
* Adding apt config for progress in lxc-debconf.
* Correcting check for daemontools in linux-container postinst.
* Adding upgrade and user-changes proof handling for /etc/inittab.
* Updating todo files.
* Adding config option to disable automatic installation of
recommended packages in lxc-debconf.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Mon, 14 Nov 2011 17:45:27 +0100
lxc (0.7.5-7) unstable; urgency=low
* Touching empty fstab in lxc-debconf.
* Correcting rm calls in lxc-debconf to actually match what is
intended to be removed.
* Shuffling dist-upgrade arround in lxc-debconf to be active in all
modes.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Fri, 11 Nov 2011 18:53:39 +0100
lxc (0.7.5-6) unstable; urgency=low
* Updating debian-config.patch to allow mknod calls in containers by
default.
* Updating debian-config.patch to allow accessing /dev/fuse by
default.
* Updating debian-config.patch to have devices by default better
commented and sorted.
* Updating debian-config.patch to also drop sys_module, mac_admin, and
mac_override capabilities by default.
* Listing local additions in lxc install file explicitly.
* Correcting syntax for db_input calls in linux-container config
script.
* Updating comments for debconf queries with strings that cannot be
empty.
* Setting debconf questions to unseen when the answer is read from
conffile.
* Applying some of the suggestions from the "reviewed" control file
from debian-l10n-english (Closes: #645850).
* Applying some of the suggestions from the "reviewed" templates file
from debian-l10n-english.
* Updating German debconf translations.
* Adding Czech debconf translations from Michal Simunek
<michal.simunek@gmail.com> (Closes: #647208).
* Adding Danish debconf translations from Joe Hansen
<joedalton2@yahoo.dk> (Closes: #646322).
* Improving wording on two strings in the German debconf translations,
thanks to Erik Pfannenstein <epfannenstein@gmx.de> (Closes:
#648059).
* Adding Spanish debconf translations from Camaleón
<noelamac@gmail.com> (Closes: #647612).
* Adding French debconf translations from Julien Patriarca
<patriarcaj@gmail.com> (Closes: #646696).
* Adding Portuguese debconf translations from Miguel Figueiredo
<elmig@debianpt.org> (Closes: #647957).
* Adding Russian debconf translations from Yuri Kozlov
<yuray@komyakino.ru> (Closes: #646419).
* Adding Swedish debconf translations from Martin Bagge
<brother@bsnet.se> (Closes: #647256).
* Adding Chinese (Simplified) debconf translations from syq
<wzssyqa@gmail.com>.
* Adding support for static network configuration in linux-container.
* Adding scripts to workaround broken squeeze release.
* Improving shell code in linux-container config and postinst files.
* Updating lxc-create patch to trim warning message when creating new
containers without previously existing configuration.
* Adding lxc-debconf template.
* Replacing upstreams debian template by using newly added debconf
template.
* Renumbering patches.
* Adding debconf handling in linux-container for number of consoles to
be run.
* Removing openssh-server host keys in cached chroot and recreate them
with linux-container.
* Reverting title suggestion by debian-l10n-english in debconf
templates and use a consistent version for both lxc and linux-
container.
* Updating todo files.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Fri, 11 Nov 2011 15:49:51 +0100
lxc (0.7.5-3ubuntu52) precise; urgency=low
[ Ben Howard ]
* Fixed image extraction for old releases (LP: #979996).
[ Timothy Chen ]
* 0072-lxc-shutdown-help: display usage when passed help. (LP: #980905)
* 0073-lxc-destroy-waits-before-destroy: lxc-shutdown waits for the
container to fully stop before it destroys it. (LP: #980902)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Mon, 16 Apr 2012 12:02:06 -0500
lxc (0.7.5-3ubuntu51) precise; urgency=low
* 0070-templates-rmdir-dev-shm: in precise containers, rmdir $rootfs/dev/shm
and and create it as a symbolic link to /run/shm. (LP: #974584)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Thu, 12 Apr 2012 09:54:22 -0500
lxc (0.7.5-3ubuntu50) precise; urgency=low
[ Stéphane Graber ]
* Minor ubuntu template tweak to add missing space after lxc.network.hwaddr.
[ Ben Howard ]
* Fixed ubuntu-cloud template user-data handling (LP: 977376)
-- Ben Howard <ben.howard@canonical.com> Mon, 09 Apr 2012 14:24:24 -0600
lxc (0.7.5-3ubuntu49) precise; urgency=low
* debian/lxc-default.apparmor: add mediate_deleted flag (LP: #969299)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Mon, 02 Apr 2012 09:38:21 -0500
lxc (0.7.5-3ubuntu48) precise; urgency=low
* debian/lxc-default.apparmor: explicitly silence warnings about attempting
to mount debugfs to /var/lib/ureadahead/debugfs/.
* 0066-confile-typo: fix typo
* debian/lxc.apparmor: allow transition to unconfined
* 0067-templates-lxc-profile: leave a comment in container configs we
create to show how to run it unconfined
* debian/lxc-containers.apparmor: move #include <tunables/global> from
debian/lxc-default.apparmor here to prevent policy loading errors when
more container profiles are defined (LP: #969228)
* debian/lxc-default.apparmor: remove obsolete FIXME comment
-- Serge Hallyn <serge.hallyn@ubuntu.com> Fri, 30 Mar 2012 15:35:07 -0500
lxc (0.7.5-3ubuntu47) precise; urgency=low
* 0065-fix-bindhome-relpath: use relative path as target for bind mount
in lxc-ubuntu template (LP: #968371)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Thu, 29 Mar 2012 22:04:30 +0000
lxc (0.7.5-3ubuntu46) precise; urgency=low
* Allow mqueue to be mounted anywhere (LP: #968326)
-- Stéphane Graber <stgraber@ubuntu.com> Thu, 29 Mar 2012 11:34:45 -0400
lxc (0.7.5-3ubuntu45) precise; urgency=low
* 0064-apparmor-mount-proc: mount /proc if we need to before changing
apparmor profile (LP: #963388). (Also fixes two bad error paths)
* lxc.postinst: use the right filename for loading profile
-- Serge Hallyn <serge.hallyn@ubuntu.com> Sun, 25 Mar 2012 21:45:03 -0500
lxc (0.7.5-3ubuntu44) precise; urgency=low
* debian/lxc.upstart and debian/lxc.postinst: Don't load policies if mount
restrictions not supported (LP: #961824)
* 0063-check-apparmor-enabled: don't try apparmor transition if aa is not
enabled or doesn't support mount mediation. Also don't fail lxc-init
if container couldn't mount /proc and /sys.
* debian/lxc-default.apparmor: allow container to mount /proc and /sys.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Wed, 21 Mar 2012 21:33:08 -0500
lxc (0.7.5-3ubuntu43) precise; urgency=low
* lxc.apparmor: allow all umount activity in lxc-start (LP: #961536)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Wed, 21 Mar 2012 14:49:14 -0500
lxc (0.7.5-3ubuntu42) precise; urgency=low
* debian/lxc.postinst: don't try to run apparmor_parser if it doesn't
exist.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Wed, 21 Mar 2012 11:35:17 -0500
lxc (0.7.5-3ubuntu41) precise; urgency=low
* add lxc-shutdown command:
- 0060-lxc-shutdown: add the command to the source
- debian/lxc.upstart: use lxc-shutdown to shut down containers cleanly
- debian/lxc.default: add LXC_SHUTDOWN_TIMEOUT (default 120s)
* support per-container apparmor policies: (LP: #953453)
- 0061-lxc-start-apparmor: add lxc.aa_profile to config file. If not
specified, lxc-default profile is used for container. Otherwise, the
specified profile is used.
Note that per-container profiles must be named 'lxc-*'.
- split debian/lxc-default.apparmor from debian/lxc.apparmor.
- have /etc/apparmor.d/lxc-containers #include /etc/apparmor.d/lxc/*
- debian/lxc.postinst: load the new lxc-containers profiles
- debian/lxc.postrm: remove lxc-containers profiles
- debian/rules: make new etc/apparmor.d/lxc dir and copy lxc-default into it
- debian/control: add libapparmor-dev to build-depends
- debian/lxc.upstart: load apparmor per-container policies at pre-start.
* debian/lxc.apparmor: insert the stricter mount rules for lxc-start
(LP: #645625) (LP: #942934)
* debian/local/lxc-start-ephemeral: re-enable aufs option (LP: #960262)
* replace upstream lxc-wait with our own bash script (LP: #951181)
- debian/local/lxc-wait: the script
- debian/rules: copy the script into place
* 0062-templates-relative-paths: update templates to use relative paths,
and make lxc-start always accept /var/lib/lxc/CN/rootfs as target prefix,
to make lvm containers work. (LP: #960860)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Wed, 21 Mar 2012 08:20:06 -0500
lxc (0.7.5-3ubuntu40) precise; urgency=low
* Re-enable apparmor profile now that the userspace was fixed.
Some part of the profile are still disabled because of missing kernel
or userspace features, see the FIXMEs for these, hopefully fixed soon.
-- Stéphane Graber <stgraber@ubuntu.com> Fri, 16 Mar 2012 19:58:43 -0400
lxc (0.7.5-3ubuntu39) precise; urgency=low
* 0059-reenable-daily-cloudimg: let user specify daily cloud images.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Fri, 16 Mar 2012 09:54:43 -0500
lxc (0.7.5-3ubuntu38) precise; urgency=low
* 0058-fixup-ubuntu-cloud:
- fix typo in check for $debug (LP: #955935)
- Download specified release, not always precise
- If cloudimg rootfs.tar.gz does not exist, create one from the base
cloudimg tar.gz. (LP: #955938)
- Explicitly set ubuntu user's password.
- Switch from daily to released stream (per smoser's suggestion).
-- Serge Hallyn <serge.hallyn@ubuntu.com> Thu, 15 Mar 2012 17:57:10 -0500
lxc (0.7.5-3ubuntu37) precise; urgency=low
[Serge Hallyn]
* 0057-update-manpages: update manual pages to reflect some new options.
[Gary Poster]
* lxc-start-ephemeral: fix broken use of '-- command' (LP: #954632)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Wed, 14 Mar 2012 10:52:44 -0500
lxc (0.7.5-3ubuntu36) precise; urgency=low
[Gary Poster]
* debian/local/lxc-start-ephemeral: make ephemeral bind mounts use a tempfs
for the upper dir, not another overlayfs. Otherwise writes/creates are
not allowed by overlayfs!
-- Serge Hallyn <serge.hallyn@ubuntu.com> Mon, 12 Mar 2012 13:22:06 -0500
lxc (0.7.5-3ubuntu35) precise; urgency=low
[Gary Poster]
* lxc-start-ephemeral: convert ephemeral approach to change all bound fstab
mounts; convert binding to also modify fstab
[Benji York]
* lxc-start-ephemeral: munge the fstab and comment out a flaky line
[Serge Hallyn]
* 0056-dont-watch-utmp: don't watch utmp if kernel supports container
reboot. (LP: #948623)
* debian/control: add dh-apparmor to Build-Depends (LP: #948481)
* lxc-start-ephemeral: add '-d' option to daemonize.
* debian/lxc.upstart: don't run post-stop if LXC_AUTO=false (LP: #949362)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Mon, 12 Mar 2012 09:51:59 -0500
lxc (0.7.5-3ubuntu34) precise; urgency=low
[Benji York]
* lxc-start-ephemeral: create unique MAC for each new
ephemeral container (LP: #949956)
-- Scott Moser <smoser@ubuntu.com> Thu, 08 Mar 2012 16:23:49 -0500
lxc (0.7.5-3ubuntu33) precise; urgency=low
* Update apparmor profile to temporarily disable it.
This will be reverted once apparmor has been fixed. (LP: #947617)
-- Stéphane Graber <stgraber@ubuntu.com> Tue, 06 Mar 2012 12:25:21 -0500
lxc (0.7.5-3ubuntu32) precise; urgency=low
* add user (-u) and key (-S) to lxc-start-ephemeral. (LP: #945183)
-- benji <benji.york@canonical.com> Fri, 02 Mar 2012 17:20:46 -0500
lxc (0.7.5-3ubuntu31) precise; urgency=low
* 0050-clone-lvm-sizes: make lxc-clone with lvm snapshots create a
snapshot of the same size as the original. (LP: #939765)
* run our dnsmasq as user 'lxc-dnsmasq' (LP: #939774)
- add debian/lxc.postinst to create the user
- debian/lxc.lxc-net.upstart: run dnsmasq as lxc-dnsmasq user
* 0051-lxc-create-lvm-use-1G: bump lvm blockdev size to 1G (LP: #942338)
* 0052-ubuntu-bind-user-conflict: don't create 'ubuntu' user when a user
gets bound in. (LP: #942144)
* 0053-lxc-start-pin-rootfs: don't let the container remount an underlying
shared fs readonly (LP: #942325)
* 0054-ubuntu-debug: add --debug option to ubuntu and ubuntu-cloud
templates (LP: #942847)
* 0055-ubuntu-handle-badgrp: fix the group handling to not assume a user's
group has the user's name. (LP: #942850)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Tue, 28 Feb 2012 15:03:45 -0600
lxc (0.7.5-3ubuntu30) precise; urgency=low
[ Serge Hallyn ]
* 0048-warn-if-container-started: If container startup fails because the
container is already running, give an error message to that effect.
(LP: #938765)
[ Stéphane Graber ]
* 0049-ubuntu-template-sudo-and-cleanup: Always make the user part of the
sudo group. This group has been around since at least 10.04 and is more
reliable than the admin group. Still add the user to the admin group
until 12.04 as some tool expect that. (LP: #938752)
Also fix a minor layout issue in the generate LXC config.
-- Stéphane Graber <stgraber@ubuntu.com> Wed, 22 Feb 2012 12:33:32 -0500
lxc (0.7.5-3ubuntu29) precise; urgency=low
* 0047-bindhome-check-shell:
- Make sure to install a bound user's shell in the container. (LP: #936762)
- Create bound user's group in the container.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Mon, 20 Feb 2012 14:31:05 -0600
lxc (0.7.5-3ubuntu28) precise; urgency=low
* 0045-fix-other-templates: lots of template fixes. Make sshd, debian,
fedoray, and busybox templates actually work. Fix inconsistent --auth_key
vs --auth-key usage in ubuntu templates.
* 0046-lxc-clone-change-hwaddr - when cloning a container, give it a new
hwaddr. (LP: #934256)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Fri, 17 Feb 2012 15:18:19 -0600
lxc (0.7.5-3ubuntu27) precise; urgency=low
[ Graham Binns ]
* debian/local/lxc-start-ephemeral: retry ssh in case sshd was slow in
starting. (LP: #933779)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Thu, 16 Feb 2012 16:47:03 -0600
lxc (0.7.5-3ubuntu26) precise; urgency=low
[ Ben Howard ]
* 0043-tweak-templates.patch:
- Add a macaddr to configs created by ubuntu-cloud template
- Add ssh key injection, locales, and tarball specification support to
ubuntu-cloud template.
[ Serge Hallyn ]
* (also in 0043-tweak-templates.patch) Add a macaddr to configs created by
ubuntu template (LP: #931229) and allow an ssh key to be injected.
* debian/control: add openssl as Recommends as it's now used by the
templates.
* 0044-lxc-destroy-rm-autos: remove autostart symlinks when deleting a
container. (LP: #930525)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Wed, 15 Feb 2012 23:33:12 -0600
lxc (0.7.5-3ubuntu25) precise; urgency=low
* 0042-close-fds.patch: add a new --close-all-fds option. Normally if
lxc-start is started with an open fd, it exits with failiure. With
this option specified, the fds will be closed and startup will continue.
--daemon now implies --close-all-fds. (LP: #931220)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Mon, 13 Feb 2012 14:03:25 -0600
lxc (0.7.5-3ubuntu24) precise; urgency=low
[ Serge Hallyn ]
* 0040-consoles-into-devlxc.patch: move lxc's console and ttys into
/dev/lxc/, and create symlinks into /dev. (LP: #927519)
[ Stéphane Graber ]
* 0041-ubuntu-template-user-and-tty:
+ Use ubuntu/ubuntu by default instead of root/root
+ Set devttydir to /dev/lxc on Precise
+ Stop modifying dhclient.conf as the default behavior is identical.
+ Stop removing tty[56].conf on Precise
+ Do not modify /etc/udev/udev.conf on Precise
+ Move information message about default login/password to the end
of the container cration so users can't miss it.
-- Stéphane Graber <stgraber@ubuntu.com> Fri, 10 Feb 2012 17:09:15 -0500
lxc (0.7.5-3ubuntu23) precise; urgency=low
* debian/lxc.upstart, debian/lxc.lxc-net.upstart, and debian/rules:
Upstartify lxc.
* remove debian/lxc.init
-- Serge Hallyn <serge.hallyn@ubuntu.com> Fri, 10 Feb 2012 10:35:55 -0600
lxc (0.7.5-3ubuntu22) precise; urgency=low
* debian/lxc.init:
- at setup_lxc_bridge, return early if ${LXC_BRIDGE) already exists.
(LP: #929514)
- switch 'ip link show' and 'brctl show' checks for /sys/class/net lookups.
- try to prevent destroying host network setup if /etc/default/lxc is
bad. Set defaults for lxc network variables if unset.
- don't pass along variables as arguments if not needed.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Thu, 09 Feb 2012 10:22:20 -0600
lxc (0.7.5-3ubuntu21) precise; urgency=low
* debian/lxc.init: Exit cleanly in undo_network(), to avoid the init.d
script and thus the package installation to fail if the network could not
be configured for LXC. (LP: #929382)
-- Martin Pitt <martin.pitt@ubuntu.com> Thu, 09 Feb 2012 16:47:09 +0100
lxc (0.7.5-3ubuntu20) precise; urgency=low
* Remove lxcguest package. No longer needed in precise.
* ubuntu-cloud template: by default assume non-cloud environment, unless
'-- -C' option is given. Otherwise containers started in a private
environment won't create ssh keys, etc.
* 0039-no-lxcguest-in-p-template: don't install the lxcguest package if
we are creating a precise (or higher) container.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Wed, 08 Feb 2012 14:46:43 -0600
lxc (0.7.5-3ubuntu19) precise; urgency=low
* 0036-fix-reboot-detection - actually detect when our kernel supports
container reboot.
* 0037-silence-netstat-errors-in-lxcls - silence netstat warnings in
lxc-ls
* 0038-ubuntu-cloud-template - add a template to create containers based
on the ubuntu cloud images.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Tue, 07 Feb 2012 17:35:35 -0600
lxc (0.7.5-3ubuntu18) precise; urgency=low
* lxcguest.lxcguest.upstart: emit the net-device-up IFACE=lo event, so
that any upstart jobs waiting on it (esp rc-sysinit before oneiric) will
proceed. (LP: #924337)
* 0034-fix-lxc-execute-reboot.patch: fix bad handling of 'exit 0' for
lxc-execute introduced with the container reboot handling. (LP: #927863)
* debian/lxcguest.lxcmount.upstart: add '--no-wait' to emit to make sure we
don't wait for the event to be processed.
* 0035-lxc-init-ignore-shm.patch: if lxc-init can't mount /dev/shm, don't
fail on account of that. (LP: #927883)
* debian/lxc.init: if the network is already up, exit before setting the
trap EXIT.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Mon, 06 Feb 2012 17:37:37 -0600
lxc (0.7.5-3ubuntu17) precise; urgency=low
[ Serge Hallyn ]
* 0032-start-check-caps.patch: exit early and with a clear error message
if lxc-start is run with insufficient permissions. (LP: #925520)
* debian/lxc.init: if there is a failure during lxc network setup, clean
up and exit. (LP: #925511)
[ Stéphane Graber ]
* 0033-ubuntu-template-multiarch.patch: Add support for building
containers using qemu-user-static, using multi-arch to install some
packages of the host architecture so the container boots and works.
* Add qemu-user-static as a Suggest of lxc.
-- Stéphane Graber <stgraber@ubuntu.com> Thu, 02 Feb 2012 19:06:19 -0500
lxc (0.7.5-3ubuntu16) precise; urgency=low
* debian/lxc.apparmor: allow write under /sys/fs/cgroup (LP: #924281)
* remove 0032-refuse-console.patch. We'll need to fix the core of the
problem, likely in lxc-start. But /dev/tty is ok for container to
access.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Tue, 31 Jan 2012 12:07:22 -0600
lxc (0.7.5-3ubuntu15) precise; urgency=low
* 0032-refuse-console.patch: don't allow access to 5:0, which is the
host's /dev/console.
* debian/lxc.apparmor, debian/rules: install an apparmor profile for
lxc-start.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Fri, 27 Jan 2012 13:46:59 -0600
lxc (0.7.5-3ubuntu14) precise; urgency=low
* debian/control: add btrfs-tools to lxc Suggests (LP: #942241)
* 0030-ubuntu-template-fail.patch: make lxc-ubuntu template fail on
error (LP: #922645)
* 0031-ubuntu-template-resolvconf.patch: handle /etc/resolv.conf being
a symlink as is now done by resolvconf by default. (LP: #922706)
* debian/lxcguest.lxcmount.upstart: emit mounted MOUNTPOINT=/run
to make resolvconf start. (LP: #922706)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Fri, 27 Jan 2012 11:13:26 -0600
lxc (0.7.5-3ubuntu13) precise; urgency=low
* 0029-btrfs-clone-support.patch: add support for cloning via
btrfs snapshots (LP: #921921).
-- Scott Moser <smoser@ubuntu.com> Thu, 26 Jan 2012 11:38:07 -0500
lxc (0.7.5-3ubuntu12) precise; urgency=low
* If the kernel supports container reboot disambuation, then don't drop
CAP_SYS_BOOT, and (always) try to use it after the container exits.
(LP: #914676)
* 0027-fix-lxc-netstat.patch: fix lxc-netstat for new nested cgroup
handling (LP: #921732)
* 0028-recursively-rmdir-cgroups.patch: if the container has created
any cgroups (i.e. by starting libvirt), make sure to delete those.
(LP: #921808)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Wed, 25 Jan 2012 14:22:51 -0600
lxc (0.7.5-3ubuntu11) precise; urgency=low
* 0025-lxc-ubuntu-drop-path-arg.patch: don't show '--path' argument in
help output, and replace --clean with --flush-cache.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Tue, 24 Jan 2012 13:10:42 -0600
lxc (0.7.5-3ubuntu10) precise; urgency=low
* lxc-create: when --lvname is specified, use it for lvcreate instead of
the lvname.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Mon, 23 Jan 2012 17:24:53 -0600
lxc (0.7.5-3ubuntu9) precise; urgency=low
* 0024-lxc-create-and-clone-fixes.patch:
- add lvm support to lxc-create
- better clean up on lxc-clone error
* debian/control:
- add rsync to lxc Depends, as templates use it.
- add lvm2 to lxc Suggests
-- Serge Hallyn <serge.hallyn@ubuntu.com> Fri, 20 Jan 2012 14:34:54 -0600
lxc (0.7.5-3ubuntu8) precise; urgency=low
[ Scott Moser ]
* update 0021-add-dev-full-to-whitelist.patch:
- add 10:228 (/dev/hpet) and 10:232 (/dev/kvm) to devices whitelist in the
ubuntu template (LP: #918946)
[ Serge Hallyn ]
* debian/lxc.init: don't bail if there is no default route.
* lxc-destroy (in 0022-fix-lxc-destroy-bugs.patch):
- don't delete a running container
- handle case where rootfs is not specififed in config (or config is
corrupt or has been deleted)
- fix broken detection of lvm backing store
* 0023-set-clone-children-earlier.patch: for cpuset in particular, the
clone_children flag must be set at cgroup root. Otherwise we'll fail
to move $$ into /sys/fs/cgroup/cpuset/lxc/tasks.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Fri, 20 Jan 2012 10:56:32 -0600
lxc (0.7.5-3ubuntu7) precise; urgency=low
* lxc-ubuntu template: add 1:7 (/dev/full) to whitelist (LP: #918946)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Thu, 19 Jan 2012 16:21:48 -0600
lxc (0.7.5-3ubuntu6) precise; urgency=low
* debian/patches/0020-drop-cap-mac-admin.patch - to prevent containers
from loading apparmor policy.
* update 0016-nested-cgroups.patch: create cgroup dirs 0755 so that
unprivileged users can read them (with lxc-ls).
* debian/local/lxc-start-ephemeral: support in-line commands (LP: #914169)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Tue, 17 Jan 2012 10:55:20 -0600
lxc (0.7.5-3ubuntu5) precise; urgency=low
[ Robie Basak ]
* debian/patches/0015-ubuntu-templ-use-updates.patch: use ports.ubuntu.com
in sources.list for alternative architectures (LP: #820715).
* debian/patches/0015-ubuntu-templ-use-updates.patch: dist-upgrade in an
isolated environment to avoid leaving a bind mount behind (LP: #913877).
* debian/lxc.{default,init}: call ifconfig with explicit netmask
(LP: #913727).
[ Serge Hallyn ]
* debian/lxc.default: update the MIRROR example - using 'localhost'
fails for updates after the container has been started.
* debian/lxcguest.console.upstart: pass 'console' not '/dev/console' to
getty. (LP: #913952)
* debian/patches/0015-ubuntu-templ-use-updates.patch: at post_process(),
copy host's /etc/resolv.conf (which may have changed) into chroot before
apt-get actions, and always do a apt-get update before installing lxcguest,
as the package version may have changed in the archive. (LP: #914155)
* 0016-nested-cgroups.patch: nest container cgroups under the host's
init cgroup. (LP: #901482)
* 0017-pull-upstream-fedora-template.patch: move to the upstream
lxc-fedora template (LP: #881903)
* 0018-make-lxc-ps-search-proc.patch: work when cgroups are mounted with
'-n'.
* debian/patches/0019-fix-lxc-ls-nested-cgroups.patch: fix lxc-ls to
handle the support for nested cgroups. (pull this into previous
commit msg before pushing)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Tue, 10 Jan 2012 18:51:45 +0000
lxc (0.7.5-3ubuntu4) precise; urgency=low
* add a default bridge for lxc to use. (LP: #801002)
* Add debian/lxc.conf, which gets installed as /etc/lxc/lxc.conf as a
sample, usable, default config. (LP: #823862)
* Add precise to the list of distros
* Add -updates and -security to /etc/apt/sources.list after debootstrap
for container creation (LP: #820715)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Thu, 10 Nov 2011 16:00:44 -0600
lxc (0.7.5-3ubuntu3) precise; urgency=low
* lxc-is-container needs to be in lxcguest, not in lxc
-- Stéphane Graber <stgraber@ubuntu.com> Fri, 11 Nov 2011 10:42:31 -0500
lxc (0.7.5-3ubuntu2) precise; urgency=low
* Remove auto-generated debian-changes-0.7.5-3ubuntu1.
* Cherry-pick Ubuntu template tweaks from upstream:
- Set a list of capabilities to drop
- Allow containers to create tap devices
- Allow mknod for any device
- Drop mac_override and mac_admin
-- Stéphane Graber <stgraber@ubuntu.com> Thu, 10 Nov 2011 10:11:22 -0500
lxc (0.7.5-3ubuntu1) precise; urgency=low
[ Serge Hallyn ]
* Merge from unstable. Remaining changes:
- Add lxcguest package (contains lxc-is-container and upstart jobs)
- debian/control: add cgroup-lite | cgroup-bin Recommends to the lxc package
- debian/lxc.install - README gets (mis-)installed under --with-rootdir.
- remove debian/lxc.{pre,post}inst
- keep debian/lxc.default - removing the now obsolete RUN line, and
adding the new LXC_AUTO variable.
- keep all 000* patches
+ 0001-monitor-support-quit.patch
+ 0002-fix-personality-segfault.patch
+ 0003-non-fatal-unsupported-personality.patch
+ 0004-fix-ubuntu-template-only-install-essential.patch
+ 0005-fix-sshd-template.patch
+ 0006-fix-checkconfig.patch
+ 0007-fix-lxc-clone-hostname.patch
+ 0008-fix-bindhome-in-template.patch
+ 0009-ubuntu-template-drop-resolvconf.patch
[ Stéphane Graber ]
* Merge from unstable. Remaining changes:
- Remove debian/lxc.templates and debian/lxc.install as we kept our
default file and dropped debian's pre/post i:nst scripts.
- Add lxc-start-ephemeral and lxc-is-container to debian/local
-- Stéphane Graber <stgraber@ubuntu.com> Tue, 25 Oct 2011 16:13:32 -0400
lxc (0.7.5-3) unstable; urgency=low
* Aborting early in initscript if lxc is not removed but not purged.
* Correcting typo in proc mount entry in the default config of the
debian template, thanks to Sylvain Collilieux
<Sylvain@Collilieux.net> (Closes: #643715).
* Correcting incomplete lxc command loop over all containers in
initscript, thanks to Biuro <biuro@ntsn.pl> (Closes: #643774).
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Fri, 30 Sep 2011 01:01:12 +0200
lxc (0.7.5-2) unstable; urgency=low
* Do not bail out with usage message when invoking lxc-list via lxc
wrapper.
* Removing useless lenny template, using the debian template for lenny
is better.
* Building manpages explicitly (Closes: #639276).
* Updating lxc-info for changed output of lxc-info as of 0.7.5.
* Adding simple lxc-backup and lxc-restore scripts.
* Adding patch to use non-routed, private IPv4 address in
documentation examples (Closes: #571525).
* Removing destroy option from initscript, unlike destroy as used by
e.g. xen, it does wipe all data of a container, the initscript would
therefore remove all data of all containers at once which is way to
dangerous.
* Adding debconf handling for lxc/auto (Closes: #632848).
* Adding patch to improve debian default container config.
* Adding patch to keep creation of new containers without previously
existing configuration non-interactive.
* Listing auto information in lxc-list.
* Rewriting initscript.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Wed, 21 Sep 2011 13:31:51 +0200
lxc (0.7.5-1) unstable; urgency=low
[ Jonas Genannt ]
* Merging upstream version 0.7.5.
[ Daniel Baumann ]
* Removing fedora.patch, not needed anymore for updated fedora
template.
* Rediffing debian.patch.
* Rediffing debian2.patch.
* Renaming and renumbering patches.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Mon, 22 Aug 2011 11:36:00 +0200
lxc (0.7.5-0ubuntu10) precise; urgency=low
* debian/patches/0009-ubuntu-template-drop-resolvconf.patch:
Drop resolvconf from package list for oneiric containers. It appears
to stop containers from getting a useful resolv.conf without doing
ifdown; ifup; and is apparently unwanted anyway. (LP: #880020)
* debian/lxcguest.lxcguest.upstart: mkdir /run/lock on boot
(LP: #880030)
* debian/fstab.lxc and debian/fstab.libvirt: mount tmpfs on /run/lock,
not /var/lock (as per new stock /lib/init/fstab).
-- Serge Hallyn <serge.hallyn@ubuntu.com> Mon, 24 Oct 2011 11:45:53 -0500
lxc (0.7.5-0ubuntu9) precise; urgency=low
* debian/patches/0008-fix-bindhome-in-template.patch: fix a bug in the
ubuntu template: if the user specified with -b does not exist, a bad
container fstab was created, so that, with no warning or indication of
why, the container failed to start. (LP: #879052)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Thu, 20 Oct 2011 14:51:37 -0500
lxc (0.7.5-0ubuntu8) oneiric; urgency=low
* debian/patches/0007-fix-lxc-clone-hostname.patch: make sure $hostname
is defined before it is first used. Reported by Benjamin Saller.
(LP: #850205)
* add missing ; at end of 'send hostname' in dhclient.conf (LP: #851274)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Wed, 14 Sep 2011 15:07:25 -0500
lxc (0.7.5-0ubuntu7) oneiric; urgency=low
* Fix lxc-checkconfig to correctly detect support for clone_children, so
as not to erroneously report failure. (LP: #827798)
-- Serge Hallyn <serge.hallyn@canonical.com> Fri, 02 Sep 2011 17:59:07 +0000
lxc (0.7.5-0ubuntu6) oneiric; urgency=low
* debian/rules: use --with-rootfs-path=/usr/lib/lxc/root. (LP: #838410)
* debian/lxc.dirs: add usr/lib/lxc/root
* fix-sshd-template.patch:
- templates/lxc-sshd.in: add /run/shm to list of directories to create.
Technically /dev/shm needn't be there, as the config will overmount with
the host's /dev.
- Don't fail if we can't create /dev/mqueue. It'll fail anyway (because
/dev is mounted read-only), and we don't really need it. Without this
fix, lxc-init fails to run on ubuntu systems, as the host doesn't have
/dev/mqueue.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Thu, 01 Sep 2011 16:01:31 +0000
lxc (0.7.5-0ubuntu5) oneiric; urgency=low
* Update Recommends to prefer cgroup-lite if available (LP: #829628)
-- Stéphane Graber <stgraber@ubuntu.com> Thu, 25 Aug 2011 16:04:07 -0400
lxc (0.7.5-0ubuntu4) oneiric; urgency=low
* Chery pick fix for Oneiric template (so ubuntu-minimal gets installed):
- 0004-fix-ubuntu-template-only-install-essential.patch
-- Stéphane Graber <stgraber@ubuntu.com> Fri, 12 Aug 2011 15:50:02 -0400
lxc (0.7.5-0ubuntu3) oneiric; urgency=low
* Update lxcguest not to remove /var/run but instead wipe its content.
That's needed since the transition to /run as /var/run is now a symlink.
-- Stéphane Graber <stgraber@ubuntu.com> Fri, 12 Aug 2011 12:26:52 -0400
lxc (0.7.5-0ubuntu2) oneiric; urgency=low
* Rename 0015-monitor-support-quit.patch to 0001-monitor-support-quit.patch
* Cherry pick two upstream commits (to fix LXC on ARM)
- personality-segfault.patch
- unsupported-personality.patch
-- Stéphane Graber <stgraber@ubuntu.com> Fri, 12 Aug 2011 11:11:04 -0400
lxc (0.7.5-0ubuntu1) oneiric; urgency=low
* New upstream release (0.7.5)
* Patches no longer needed
- diff-to-bcbd102cb
* Patches merged upstream
- 05-fedora.patch
- 0004-add-arm-to-supported-archs.patch
- 0005-dont-use-devpts-in-fstab
- 0006-templates-allow-fuse.patch
- 0007-bindhome-dont-add-groups.patch
- 0008-templates-add-ubuntu-keyring.patch
- 0009-fix-lxc-ps.patch
- 0010-fix-shutdown.patch
- 0011-fix-lxc-ls.patch
- 0012-fix-lxc-netstat.patch
- 0013-unshare-call-cgroup-create.patch
- 0014-lxc-ps-accept-n.patch
- 0016-fix-lxc-ps-typeo.patch
* Remaining patches
- 01-libdir.patch
- 02-distclean.patch
- 03-module-init-tools.patch
- 04-configuration-path.patch
- 06-debian.patch
- 07-debian2.patch
- 0015-monitor-support-quit.patch
[ Serge Hallyn ]
* add overlayfs support to lxc-start-ephemeral.
* fix comment in debian/fstab.libvirt.
* lxcguest.console.upstart: Don't run in libvirt. as libvirt will symlink
/dev/tty1 to /dev/pts/0, so /etc/init/tty1.conf will run a console.
-- Stéphane Graber <stgraber@ubuntu.com> Thu, 11 Aug 2011 14:58:14 -0400
lxc (0.7.4.2-4) unstable; urgency=low
* Updating todo file.
* Readding accidentally dropped patch to disable unneeded umountroot
initscript (Closes: #611972).
* Adding slightly modified patch from Sylvain Ferriol
<ferriol@gate.cnrs.fr> to correct locales generation in debian
template (Closes: #607273).
* Adding patch to set default runlevel in debian template to 2 instead
of 3.
* Adding patch to disable services in debian template upgrade proof
(Closes: #636851).
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Sun, 07 Aug 2011 11:12:30 +0200
lxc (0.7.4.2-3ubuntu6) oneiric; urgency=low
* Add lxc-start-ephemeral by Robert Collins (LP: #807351)
* Add a --quit-on-stop arg to lxc-monitor for use by lxc-start-ephemeral.
* Modify lxcguest.conf to clear out /var/run (LP: #819621)
* Fix a bug in lxc-ps when cgroup-bin is not mounted.
* Modify lxc-ps to accept '-n name' and support '--' to separate options
for ps. (LP: #820720)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Wed, 03 Aug 2011 19:48:11 -0500
lxc (0.7.4.2-3ubuntu5) oneiric; urgency=low
* debian/patches/0011-fix-lxc-ls.patch:
debian/patches/0012-fix-lxc-netstat.patch:
The cgroup mounts created by cgroup-bin do not show up in /etc/mtab.
lxc-ls and lxc-netstat, as lxc-ps before, assume that /etc/mtab is
symlinked to /proc/mounts. (LP: #819319)
* debian/patches/0013-unshare-call-cgroup-create.patch:
Don't spit out an error when there is no cgroup to remove because the
ns cgroup is not mounted. (LP: #819319)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Mon, 01 Aug 2011 09:28:02 -0500
lxc (0.7.4.2-3ubuntu4) oneiric; urgency=low
* debian/patches/0010-fix-shutdown.patch: If /var/run is a symlink to /run
in the container, then opening /proc/<pid>/root/var/run/utmp will end up
opening the host's utmp. Therefore the hack detecting shutdown through
utmp fails. (LP: #817565)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Thu, 28 Jul 2011 12:24:46 -0500
lxc (0.7.4.2-3ubuntu3) oneiric; urgency=low
* debian/patches/0009-fix-lxc-ps.patch: make lxc-ps work when cgroup-bin
is installed. (LP: #817606)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Thu, 28 Jul 2011 11:34:23 -0500
lxc (0.7.4.2-3ubuntu2) oneiric; urgency=low
* add ubuntu-keyring to list of packages for oneiric. (LP: #817233)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Wed, 27 Jul 2011 15:19:05 -0700
lxc (0.7.4.2-3ubuntu1) oneiric; urgency=low
* Merge from Debian (0.7.4.2-3) (LP: #812892)
- patches: import debian's patches 02-07
* 06 needed to be ported due to changes upstream
- debian/lxc.manpages: switch to Debian version
- debian/lxc.TODO
- switch README.Debian for lxc.README.Debian from debian package
- remove debian/watch and debian/gbp.conf
- bump debian/compat
- copy debian/copyright from debian package
- copy debian/source/options
- debian/control: increased debhelper version to >= 8.
* Remaining changes:
- keep debian/patches/diff-to-bcbd102cb to bump to upstream git HEAD
- keep ubuntu patches 0004-0006, which are pending acceptance upstream.
- keep lxcguest package (not in debian):
* debian/control: define package
* debian/fstab.lxc and debian/fstab.libvirt
* debian/lxcguest.console.upstart
* debian/lxcguest.lxcguest.upstart
* debian/lxcguest.lxcmount.upstart
* debian/lxcguest.install
* debian/lxc-is-container: keep Ubuntu-specific script
- debian/local: a new set of scripts, NOT yet merged from Debian.
- debian/lxc.default: keep example MIRROR
- lxc-dev package (not in Ubuntu):
* skip debian/control entry
* skip debian/lxc-dev.install
- debian/lxc.dirs:
* keep Ubuntu-specific entries:
* usr/share/lintian/overrides
* usr/share/doc/lxc/examples
- debian/lxc.docs: only in Ubuntu
- debian/lxc.install: keep Ubuntu version
- debian/rules: keep old version (new debian version is lovely but
fails to build Ubuntu package.
* debian/patches/0007-bindhome-dont-add-groups.patch: when binding a user
into container, don't auto-insert his groups from the host into the
container (LP: #813403).
-- Serge Hallyn <serge.hallyn@ubuntu.com> Fri, 22 Jul 2011 11:47:41 -0500
lxc (0.7.4.2-3) unstable; urgency=low
* Adding patch to remove double check for configuration path in lxc-
create (Closes: #633996).
* Adding patch to remove dubious fstab entries in fedora template,
thanks to Michael Biebl <biebl@debian.org> (see #633053).
* Adding adapted patch from upstream to correct architecture setting
in debian template (Closes: #622626).
* Adding note in README.Debian about kernel crashes for >> 2.6.36 when
using two bridges.
* Updating section for lxc-dev.
* Adding patch to extend architecture static fallback list for powerpc
in debian template.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Fri, 22 Jul 2011 17:40:22 +0200
lxc (0.7.4.2-2) unstable; urgency=low
* Splitting out development files to lxc-dev.
* Adding debug package.
* Switching architecture fields to linux-any.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Fri, 15 Jul 2011 14:20:57 +0200
lxc (0.7.4.2-1) unstable; urgency=low
* Taking over lxc together with Jonas, Guido is MIA.
* Removing useless whitespaces at EOL and EOF.
* Removing vcs field.
* Removing git-buildpackage conffile.
* Removing watch file.
* Updating to standards version 3.9.2.
* Moving from cdbs to debhelper version 8.
* Removing pre-squeeze version from libcap-dev build-depends.
* Sorting depends field.
* Adding debootstrap to recommends.
* Rewrite copyright file in machine-interpretable format.
* Prefixing debhelper files with package name.
* Removing lxc.docs, currently the references files do not contain
useful information.
* Adding options file for dpkg source format.
* Rediffing libdir patch.
* Adding lxc wrapper script.
* Adding lxc-list script.
* Simplyfing manpages debhelper file.
* Adding patch to avoid FTBFS when building twice in a row (Closes:
#615485).
* Rewriting README.Debian (Closes: #618928).
* Sorting debhelper dirs file.
* Including examples from upstream documentation.
* Adding patch for debian template to also disable module-init-tools
initscript.
* Removing superfluous section field.
* Adding todo file.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Wed, 13 Jul 2011 01:36:32 +0200
lxc (0.7.4.2-0.3ubuntu4) oneiric; urgency=low
* introduce lxc-is-container script and 'lxcguest' upstart job which both
detect (the script exploiting the upstart job) whether we are in a
container. (LP: #813075)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Tue, 19 Jul 2011 15:16:49 -0500
lxc (0.7.4.2-0.3ubuntu3) oneiric; urgency=low
* Clean up packaging
- remove 0002-disable-debian-checkroot-script.patch: it is wrong.
- remove 0003-squeeze-missing-tty.patch: it is redundant.
- diff-to-bcbd102cb: mark forwarded as not-needed
- 0004-add-arm-to-supported-archs.patch: Add author and description.
- 0004-0006: mark forwarded as yes
- Not renumbering 0004-0006 as that is more confusing, and they
will hopefully go away with 0.7.5.
- remove dh_install calls from rules
- rename lxc.overrides to lxc.lintian-overrides and remove rules entry
to do so
- remove commented out include of /usr/share/cdbs/1/rules/dpatch.mk
-- Serge Hallyn <serge.hallyn@ubuntu.com> Tue, 12 Jul 2011 13:08:26 -0500
lxc (0.7.4.2-0.3ubuntu2) oneiric; urgency=low
* Add a Recommend on cgroup-bin (LP: #800456)
-- Stéphane Graber <stgraber@ubuntu.com> Thu, 07 Jul 2011 22:49:46 +0200
lxc (0.7.4.2-0.3ubuntu1) oneiric; urgency=low
* Sync upstream 0.7.4.2
* Add diff up to git head.
- Fix interaction with cgroups-bin (LP: #784093)
- Fix arch support to create i386 containers on amd64 (LP: #798476)
- Support a bind-mounted $HOME with template (LP: #800482)
* add debootstrap to Recommends (LP: #803745)
* debian/patchs updates:
- refresh 0002-disable-debian-checkroot-script.patch
- drop:
* 0004-add-ubuntu-mirrors.patch
* 0005-add-netbase-to-templates.patch
* 0006-fix-template-syntax-error.patch
* 0007-natty-template-install-lxcguest.patch
* 0010-templates-use-dpkg.patch
- renamed and updated:
* 0008-add-arm-to-supported-archs.patch to
0004-add-arm-to-supported-archs.patch
* 0009-templates-dont-use-devpts-in-fstab to
0005-dont-use-devpts-in-fstab
* 0011-templates-allow-fuse.patch to
0006-templates-allow-fuse.patch
* remove unused debian/lxc-start.sh
* include autoreconf.mk to force Makefile.in to be rebuilt
* Remaining changes over debian:
- add lxcguest package
- debian/control
* keep docbook-utils in Build-Depends
- lxc.default: add commented example MIRROR
-- Serge Hallyn <serge.hallyn@ubuntu.com> Thu, 07 Jul 2011 13:53:52 -0500
lxc (0.7.4.2-0.3) unstable; urgency=low
* Non-maintainer upload.
* Correct previous changelog entry (the upload was to unstable directly,
not to delayed/3).
* Handle symlinks in /etc/lxc/auto.
* Correct wrong variable in lxc.init that made it look in the wrong location
for auto started containers (Closes: #632849).
* Correct spelling typo in README.Debian.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Wed, 06 Jul 2011 15:11:37 +0200
lxc (0.7.4.2-0.2) unstable; urgency=low
* Non-maintainer upload.
* Handle empty /etc/lxc/auto (Closes: #632648).
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Tue, 05 Jul 2011 05:58:59 +0200
lxc (0.7.4.2-0.1) unstable; urgency=low
[ Daniel Baumann ]
* Non-maintainer upload (delayed/3).
* Correcting patch to disable debian checkroot script (Closes:
#600456).
* Adding patch to set default suite to squeeze in debian template
(Closes: #600456).
* Adding patch to correct include argument when calling debootstrap in
debian template (Closes: #607275).
* Adding patch to correct charset argument when calling locale-gen in
debian template (Closes: #607273).
* Adding patch to disable unneeded umountroot initscript (Closes:
#611972).
* Merging upstream version 0.7.4.2 (Closes: #617934, #627636).
* Rediffing fix-too-deep-lib-dir.patch.
* Removing disable-debian-checkroot-script.patch, included upstream.
* Removing squeeze-missing-tty.patch, included upstream.
* Removing restore-lxc.mount-lxc.mount.entry-functionality.patch,
included upstream.
* Removing Make-debian-mirror-configurable-and-default-to-cdn.patch,
included upstream.
* Removing Setting-default-suite-to-squeeze-in-debian-template.patch,
included upstream.
* Removing Correcting-include-argument-when-calling-debootstrap-in-
debian-template.patch, included upstream.
* Removing Correcting-charset-argument-when-calling-locale-gen-in-
debian-template.patch, included upstream.
* Removing Adding-patch-to-disable-unneeded-umountroot-
initscript.patch, included upstream.
* Don't stop containers on upgrade (Closes: #626163).
[ Jonas Genannt ]
* Add an /etc/lxc/auto directory (Closes: #611920).
[ Daniel Baumann ]
* Simplify usage of basename in initscript.
-- Daniel Baumann <daniel.baumann@progress-technologies.net> Mon, 27 Jun 2011 15:04:11 +0200
lxc (0.7.4-0ubuntu11) oneiric; urgency=low
* Allow containers to access /dev/fuse (LP: #800886)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Wed, 22 Jun 2011 16:06:23 -0500
lxc (0.7.4-0ubuntu10) oneiric; urgency=low
* Import patch from stgraber to use dpkg to decide arch in lxc templates.
This is necessary for templates to work on arm.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Fri, 27 May 2011 13:38:19 -0400
lxc (0.7.4-0ubuntu9) oneiric; urgency=low
* lxcguest: Recognize 'LIBVIRT_LXC_UUID' in place of 'container=libvirt'
as proving that upstart is running in a container.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Mon, 16 May 2011 14:03:52 -0500
lxc (0.7.4-0ubuntu8) oneiric; urgency=low
* debian/patches/0009-templates-dont-use-devpts-in-fstab: remove devpts
entry from $confdir/container/fstab, as it is not needed, and can
cause the host devpts mount options to change, because it happens
before lxc has done a mount -o newinstance. (LP: #607636)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Fri, 06 May 2011 12:08:07 -0500
lxc (0.7.4-0ubuntu7) natty; urgency=low
* lxcguest: for libvirt containers, offer console on /dev/pts/0 rather
than /dev/console.
* lxcguest: offer alternate jobs for libvirt-lxc. Libvirt-lxc doesn't watch
guest's utmp (doesn't support clean shutdown at all) so it can safely
mount its own /var/run and such. Hopefully this can go away after lxc
supports clean shutdown/reboot without the utmp-watching hack.
(LP: #757752)
* debian/fstab.lxc: comment out all entries. /sys gets mounted anyway,
and we need to not overmount /var because otherwise the container parent
won't see utmp, can't see the container is shutdown, and won't kill
the init. Note that when expected kernel functionality to help clean up
container reboot and shutdown comes, these can be uncommented.
(LP: #754655)
-- Serge Hallyn <serge.hallyn@ubuntu.com> Fri, 08 Apr 2011 09:02:48 -0500
lxc (0.7.4-0ubuntu5) natty; urgency=low
* Add ARM to list of supported archs - LP: #745884
-- Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> Wed, 06 Apr 2011 16:49:15 +0200
lxc (0.7.4-0ubuntu4) natty; urgency=low
* Add lxcguest to the list of packages installed by the natty template.
(LP: #745907)
* Since lxcguest will be installed, don't install our own console.conf,
and don't clear out /lib/init/fstab.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Fri, 01 Apr 2011 08:50:36 -0500
lxc (0.7.4-0ubuntu3) natty; urgency=low
* Fix an error in the syntax in the ubuntu templates - they were using
upstart job syntax which is not valid in bash for including the
/etc/default files. (LP: #742770)
* debian/lxc.default: Comment out the example defines so as not to cause
trouble, and fix the default MIRROR.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Fri, 25 Mar 2011 15:55:05 -0500
lxc (0.7.4-0ubuntu2) natty; urgency=low
* Fix an error in the syntax in the ubuntu templates - they were using
upstart job syntax which is not valid in bash for including the
/etc/default files. (LP: #742770)
* Now that the /etc/default file is actually sourced, comment out
the example defines.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Fri, 25 Mar 2011 15:55:05 -0500
lxc (0.7.4-0ubuntu2) natty; urgency=low
* lxc-natty.in: Adding package "netbase" to debootstrap (LP: #740167)
-- Ahmed Kamal <kim0@ubuntu.com> Tue, 22 Mar 2011 18:47:29 +0200
lxc (0.7.4-0ubuntu1) natty; urgency=low
* New upstream version.
* Refreshed patches, dropped 0005-env.patch since it was already
accepted upstream.
-- Chuck Short <zulcss@ubuntu.com> Thu, 10 Mar 2011 07:25:34 -0500
lxc (0.7.3.1-0ubuntu1) natty; urgency=low
* Base on new upstream git tree with new maverick and natty templates,
and able to run without ns cgroup.
* Send a 'container=lxc' variable to upstart. The upstream git has
the same patch, though this tree has it as a quilt patch.
* Add lxcguest package which converts a system into one which can
boot upstart both as a container and a (kvm or bare-metal) host.
* Add a MIRROR default in /etc/default/lxc, and use that in the
debootstrap command in the lucid, maverick and natty templates.
* Remove 0004-restore-lxc.mount-lxc.mount.entry-functionality.patch
which prevents containers from starting.
-- Serge Hallyn <serge.hallyn@ubuntu.com> Sun, 23 Jan 2011 17:28:55 -0600
lxc (0.7.3-1) unstable; urgency=low
* New upstream version (closes: #602631)
- Support for specifying debian suite (closes: #600459)
- Support for declaring a different architecture (closes: #597875)
* Fix restart init.d action sequence (closes: #597998)
* Move too-deep /usr/lib/lxc/lxc path to a proper patch
* Disable checkroot script in debian template (closes: #601001)
* Create missing tty devices under squeeze (closes: #600466)
* Restore bindmount functionality in newer kernels (closes: #604475)
* Make debian mirror configurable (closes: #601422)
* Default to cdn.debian.net as a debian mirror (closes: #600464)
-- Guido Trotter <ultrotter@debian.org> Mon, 06 Dec 2010 16:24:31 +0100
lxc (0.7.2-1) unstable; urgency=low
* New upstream version
* Convert libcap dependency to versioned (closes: #571527)
* Bump up standards version to 3.9.0
* Fix too-deep /usr/lib/lxc/lxc path (closes: #587847)
* Add init script (closes: #573830)
Thanks to Przemysław Knycz <pknycz@kolnet.eu> for the base example
* Bump up standards version (3.9.1)
-- Guido Trotter <ultrotter@debian.org> Wed, 04 Aug 2010 13:23:42 -0400
lxc (0.7.1-1) unstable; urgency=low
* New upstream version
* Convert to quilt format
* Use pristine-tar option in git-buildpackage
* lxc-$distro scripts (debian, fedora, sshd, ubuntu, busybox) are now
shipped under /usr/lib/lxc/lxc/templates/
* Bump up standards version
-- Guido Trotter <ultrotter@debian.org> Mon, 28 Jun 2010 10:15:48 +0100
lxc (0.6.5-1) unstable; urgency=low
* New upstream version (closes: #566771)
-- Guido Trotter <ultrotter@debian.org> Mon, 25 Jan 2010 15:39:38 +0000
lxc (0.6.4-2) unstable; urgency=low
* Ship the /var/lib/lxc directory (closes: #565519)
-- Guido Trotter <ultrotter@debian.org> Sat, 16 Jan 2010 16:57:00 +0000
lxc (0.6.4-1) unstable; urgency=low
[ Stéphane Graber ]
* Upgrade standards-version to 3.8.3
* Drop the copy of etc/* from rules as "etc" is no longer in the tarball
[ Guido Trotter ]
* New Upstream Version
* Update libcap2-dev dependency to libcap-dev
* Install upstream-built man pages via debian/lxc.manpages
* Drop unneeded docbook-utils build dependency
-- Guido Trotter <ultrotter@debian.org> Sun, 10 Jan 2010 10:40:21 +0100
lxc (0.6.3-2) unstable; urgency=low
* Fix spelling error in README.Debian
* Move .gbp.conf to debian/gbp.conf
-- Guido Trotter <ultrotter@debian.org> Sun, 26 Jul 2009 12:06:18 +0200
lxc (0.6.3-1) unstable; urgency=low
* New Upstream Version
* Remove duplicate build-dependency on autotools-dev
* Build depend on linux-libc-dev
* Disable checking of netlink headers from configure
(currently fails under sid)
* Upgrade standards-version to 3.8.2
-- Guido Trotter <ultrotter@debian.org> Sat, 25 Jul 2009 12:24:30 +0200
lxc (0.6.2-2) unstable; urgency=low
* Add the vcs entry in debian/control
* Update README.Debian mentioning lxc-checkconfig
* Update README.Debian mentioning the cgroups file system (closes: #532886)
(Thanks to Daniel Pittman for that issue and a suggested fix)
-- Guido Trotter <ultrotter@debian.org> Fri, 12 Jun 2009 15:27:43 +0100
lxc (0.6.2-1) unstable; urgency=low
* New upstream release
-- Guido Trotter <ultrotter@debian.org> Wed, 29 Apr 2009 17:49:13 +0100
lxc (0.6.1-1) unstable; urgency=low
* Initial release (Closes: #519408)
* Move a few scripts to "examples"
-- Guido Trotter <ultrotter@debian.org> Fri, 27 Mar 2009 19:45:45 +0000
|