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
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
|
CHANGES
=======
3.29.0
------
* Rename openeuler mirror script
* Check and grow the GPT structure to the end of the volume
3.28.0
------
* Fix jsonschema version to match lower-constraint
* Fix openeuler mirror problem
* Fix ubuntu-minimal to run autoremove
* Add a FIPS element
3.27.0
------
* Correct boot path to cover FIPS usage cases
* Update Fedora to 37
* Removal focal pins for testing
* Document diskimage-builder command
* Switch run\_functests.sh from disk-image-create to diskimage-builder
* A new diskimage-builder command for yaml image builds
* chore: support building Fedora on arm64 AKA aarch64
* Add swap support
* Fix double-keyed json
* Repeat to umount filesystem when exception occurs
3.26.0
------
* cache-url: Give up on curl install for Redhat platforms
* Clean up tox.ini for tox v4
* Reduce thin pool by one more extent
* Grow thin pool metadata by 1GiB
* Add variable for check installing python3 in yum element
* tox jobs: pin to correct nodesets; use host networking for containerfile
* Fix issue in extract image
* Added example configuration
* Added cloud-init growpart element
* Add Rocky 9 ARM64 functional test
3.25.0
------
* Start running dib-lint again
* Install Fedora ifcfg NM compat package
* added elrepo element
* changed release check logic in lvm element
* Allow flake8 version 5
3.24.0
------
* Support LVM thin provisioning
* Add thin provisioning support to growvols
3.23.1
------
* rocky : create machine-id in 9
* Allow setting ROOT\_LABEL from environment
* Do dmsetup remove device in rollback
* Fix wrong yum.conf name of CentOS 9 Stream
3.23.0
------
* Add Rockylinux 9 build configuration and update jobs for 8 and 9
* Add subscription-manager repo names for RHEL-9
* Disable the opensuse functest
* Upgrade openEuler to 22.03 LTS
* rockylinux : create machine-id early
* cache-url: turn off -x by default
* opensuse: better report checksum errors
* ubuntu: more exact match on squashfs file, containerfile: use focal
* Allow Gentoo to manage python versions by itself
* Parse block device lvm lvs size attributes
* update default python for gentoo to 3.10
* Removing old grub removal step
* Use internal dhcp client for centos 9-stream and beyond
* Fix BLS entries for /boot partitions
3.22.0
------
* Add Fedora 36 support
* containerfile: warn if we don't have a Dockerfile
* Add support for Python 3.10
* Revert "CentOS 9-stream : work around selinux permissions issue"
* Fix backward regex match
* Add a warning in satellite configuration
* Use plain tox jobs instead of openstack ones
* Stop using openstack upper constraints
* CentOS 9-stream : work around selinux permissions issue
* Revert "Remove py 3.6 support and update jobs"
* Drop tumbleweed job
* Remove py 3.6 support and update jobs
* Check and mount boot volume for data extraction with nouuid
* Fix openssl example command in dynamic-login
* Fix grub setup on Gentoo
* Adopted dkms element to work on Ubuntu Jammy and nvidia drivers
* Switch to the CentOS 9 IPA job
3.21.1
------
* Ensure cloud-init is configured to generated host keys
* Add Jammy functesting to dib
3.21.0
------
* Ensure passwd is installed on RH and derivatives
* Revert "Temporarily stop running OpenSUSE functtests"
* yum-minimal: workaround missing $releasedir variable
* Temporarily stop running OpenSUSE functtests
* Make centos reset-bls-entries behave the same as rhel
* Switch to release-notes-jobs-python3
* Revert "Fallback to persistent netifs names with systemd"
* Fix dhcp-all-interfaces on debuntu systems
* centos: avoid head pipe failure
* containerfile: update test to jammy
* Add a job to test building jammy
* Move reset-bls-entries to post-install
* Set machine-id to uninitialized to trigger first boot
* yum-minimal: clean up release package installs
3.20.3
------
* source-repositories : use explicit sudo/-C args when in REPO\_DEST
* Update gentoo python version to 3.9
3.20.2
------
* CentOS Stream 9 has EPEL now
* Add interpolation note for dynamic-login password
* Move grub-install to the end, and skip for partition images
* Use https for downloading ubuntu images
3.20.1
------
* containerfile: Add support for setting network driver
3.20.0
------
* Update fedora element testing to F35
* containerfile: add support for Docker
* Handle btrfs root subvolume for fedora extract-image
* Correctly create DIB\_ENV variable and dib\_environment file
* Revert "Revert "Detect boot and EFI partitions in extract-image""
3.19.1
------
* Revert "Detect boot and EFI partitions in extract-image"
* Force use of NetworkManager with glean on Rocky Linux
* Detect boot and EFI partitions in extract-image
3.19.0
------
* rhel: work around RHEL-9 BLS issues
* bootloader: clean up EFI checking
* Add rocky support to the epel element
* bootloader: fix arm64 install path
* update gpg / file verification for Gentoo
* Remove OS CI mirror role from fedora(-minimal) tests
* Update platform support to describe stable testing
* Futher bootloader cleanups
3.18.0
------
* Fallback to persistent netifs names with systemd
* Revert "Use rpm -e instead of dnf for cleaning old kernels"
* fedora-container: pull in glibc-langpack-en
* Make growvols config path platform independent
3.17.0
------
* Remove contrib/setup-gate-mirrors.sh
* Cleanup more CentOS 8 bits
* Remove CentOS-8 jobs
* Add new container element - Rocky Linux
* Add 9-stream ARM64 testing
* Switch 9-stream testing to use opendev mirrors
* centos: do not use $releasever in .repo files
* Fix openSUSE images and bump them to 15.3
* debian-minimal: remove old testing targets
* Add debian-bullseye-arm64 build test
* dhcp-all-interfaces: opt let NetworkManager doit
* Don't run functional tests on doc changes
* General improvements to the ubuntu-minimal docs
* Rename existing BLS entry with the new machine-id
* Remove centos 9 and rhel 8 block in grub2 pkg-map
* Fixes for centos-9-stream efi behaviour
* Use https for base centos image download
* Remove opensuse related funtests
* Remove extra if/then/else construct in pip element
* centos: work around 9-stream BLS issues
* Avoid unbound variable error when installing pip
* enable cloud-init by default on systemd
* Fix failure in pip element
* Install only python3 pip in debian bullseye
* Use OpenDev mirrors for 8-stream CI builds
* Test 8-stream aarch64 build
* Document EFI elements requirements
3.16.0
------
* Fix BLS based bootloader installation
* Trivial: fix whitespace in ubuntu element rst
* update gentoo source suffix (where it finds the file to download)
* Allowing ubuntu element use local image
* Added missing grubby arg DIB\_BOOTLOADER\_DEFAULT\_CMDLINE
3.15.2
------
* source-repositories: don't use --git-dir
* Replace deprecated assertEquals
* Revert "centos 9-stream: make non-voting for mirror issues"
3.15.1
------
* containerfile: handle errors better
* containerfile: fix tar extraction
* centos 9-stream: make non-voting for mirror issues
3.15.0
------
* fedora-container: update to Fedora 35
* Add support for CentOS Stream 9 in DIB
* dracut-regenerate: drop Python 2 packages
* tests: remove debootstrap install
* Add openEuler jobs back
* Fix bootloader installation for gentoo
* Switch ARM64 testing to bullseye
3.14.0
------
* Update centos element for 9-stream
* Run functional tests on Debian Bullseye
* Simplify functests job
* Remove extras job, put gentoo job in gate
* functests: drop minimal tests in the gate
* centos7 : drop functional testing
* functests: drop apt-sources
* ubuntu: add Focal test
* ubuntu-systemd-container: deprecate and remove jobs
* Revert "Allowing ubuntu element use local image"
* epel: match replacement better
* Remove py35 tox jobs
* Update keylime-agent and tpm-emulator elements
* Drop lower version requirement for networkx
* Allowing ubuntu element use local image
* Fix lower constraints
* Add DIB\_YUM\_REPO\_PACKAGE as an alternative to DIB\_YUM\_REPO\_CONF
* Add policycoreutils package mappings for RHEL/Centos 9
* RHEL/Centos 9 does not have package grub2-efi-x64-modules
* Support grubby and the Bootloader Spec
* Move grubenv to EFI dir
* Fix debian-minimal security repos
* Fix cron not installed in debian
* Fix doc typo
* yum-minimal: use DNF tools on host
* Bump Ubuntu release to focal
* Use non-greedy modifier for SUBRELEASE grep
* Introduce openEuler distro
* Fedora: bump DIB\_RELEASE to 34
* Permit specification of extra bootstrap packages
3.13.0
------
* Update IRC networks
* Add a keylime-agent element and a tpm-emulator element
* Replace deprecated import of ABCs from collections
* fedora-container: install dnf-plugins-core
* Mount /sys RO
* Add a growvols utility for growing LVM volumes
* Migrate from testr to stestr
* cache-url : turn down verbose curl
* Add element block-device-efi-lvm
3.12.0
------
* Do not uninstall non-installed packages
* Remove octvia-v1-dsvm-\* jobs
* Fix DISTRO\_NAME in Fedora elements
* Add fedora-containerfile element
* bootloader: remove extlinux/syslinux path
* bootloader: disable BLS for Fedora
* Auto find greatest Fedora cloud image sub-release
* containerfile: automatically search for distro docker files
* dib-lint: match text/x-script.python
* Add containerfile element
* setup.cfg: Replace dashes with underscores
* Update the ironic jobs
3.11.0
------
* debian-minimal: bullseye: /updates -> -security
* debian-minimal: Set bullseye version
* Collect openstack logs
* Remove dib-nodepool-functional-openstack-ubuntu-bionic
* Install pbr before glean to address SNI issues
* dib-run-parts: stop leaving PROFILE\_DIR behind
* Ensure redhat efi packages are reinstalled during finalise
3.10.0
------
* Add Debian Bullseye Zuul job
3.9.0
-----
* Improved the documentation for DIB\_DNF\_MODULE\_STREAMS
* Properly set grub2 root device when using efi
* Make DIB\_DNF\_MODULE\_STREAMS part of yum element
* Convert multi line if statement to case
* Fix centos stream set mirror
* Fix: IPA image buidling with OpenSuse
* simple-init: support installing Glean from packages
* simple-init: allow disabling DHCP fallback
3.8.0
-----
* update gentoo keywords to support gcc-10
* replace the link which is in the 06-hpdsa file
* Only add rhel base repos when REG\_REPOS is not set
* Support secure-boot bootloader where possible
* Change get-pip url
* Add aarch64 support for rhel
* Add efibootmgr utility for UEFI boot menu management
* Fix hooks order for CentOS/Fedora when mirror used
* Don't use hardcode while override base image file
* Fix installation of proliant tools
* Change paths for bootloader files in iso element
* Use the same bootloader pkg-map for all redhat family
* Don't install centos-linux-release on 8-stream
* Remove fedora-31 testing
* Check and remove existing image interface configurations
3.7.0
-----
* Set eus repositories if REG\_RELEASE is set
* Install last stable version of get-pip.py script
* simplify updating python versions in gentoo
* Install epel-release from URL
* Add 'DIB\_UBUNTU\_MIRROR\_DISTS' to ubuntu-minimal
* Fix CentOS Stream 8 base repo in centos element
* Remove the deprecated ironic-agent element
3.6.0
-----
* add missing packages for python reinstall on gentoo
* Fix centos 8.3 partition image building error with element iscsi-boot
* Fix building error with element dracut-regenerate
* Enable dracut list installed modules
* docs: fix wrong key in the lvm sample configuration
3.5.0
-----
* Remove centos-repos package for Centos 8.3
* Install git-core instead of git on RH systems
3.4.0
-----
* simple-init: also remove en\* interfaces from the images
* Fix dynamic-login with grub2
* Run autoremove on post-install step
* Fix python-stow-versions
* Remove dib-block-device console entrypoint
* Remove entry-point for element-info
* Add support for vlan interfaces in dhcp-all-interfaces.sh
* yum-minimal: Add centos-stream-repos package for centos-8-stream
* Allow processing 'focal' ubuntu release in lvm
* Remove the unused coding style modules
* Add Python3 Wallaby unit tests
* Ensure yum-utils is installed in epel element
* Fix runtime error if DIB\_DNF\_MODULE\_STREAMS is not set
* Disable growpart in cloud-init-disable-resizefs
* Remove unused fedora-30 job
* Test opensuse 15 builds with 15.2
* Remove install unnecessary package
* Revert "Avoid disabling rhel-7-server-rh-common-rpms"
3.3.1
-----
* Rename duplicating 10-debian-minimal.bash
3.3.0
-----
* rhel-common: Provide method to select module streams
* Install gzip instead of busybox-gzip on suse
* Install grep before busybox on suse distros
* bootloader: remove dangling grubenv links
* Move centos python3 installation after RHEL subscription
* Copy apt gpg keys directly into trusted.gpg.d
* Make iscsi-boot element support centos 8
* update various gentoo bits
3.2.1
-----
* Revert "source-repositories: git is a build-only dependency"
3.2.0
-----
* update gentoo to allow building arm64 images
* Makes EFI images bootable by bios
* Fedora 32 support
* Do not install python2 packages in ubuntu focal
* Update name of ipa job
* Handle NetworkManager for dhcp-all-interfaces
* source-repositories: git is a build-only dependency
* Add support for CentOS 8 Stream cloud image
* Remove glance-registry
* Deprecate dib-python; remove from in-tree elements
* Pre-install python3 for CentOS
* Update the tox minversion parameter
* Adds gnupg2 for apt-keys in ubuntu-minimal
* Support non-x86\_64 DIB\_DISTRIBUTION\_MIRROR variable for CentOS 7
* Fixes DIB\_IPA\_CERT certificate copy issue
* add openrc init system support to serial console element
* update gentoo-releng gpg key
* Fix DIB scripts python version
* Switch from unittest2 compat methods to Python 3.x methods
* Install yum and yum-utils on Red Hat family hosts
* Revert "Make ipa centos8 job non-voting"
* Disable all enabled epel repos in CentOS8
* Make ipa centos8 job non-voting
* add musl profile to gentoo
* Download latest CentOS cloud image
* Add support for CentOS 8 Stream
3.1.0
-----
* add more python selections to gentoo
* update grub cmdline to current kernel parameters
* Stop bringing the test environment into the mocks
* Remove virtualenv activation
* Add .eggs to gitignore
* Switch to newer openstackdocstheme and reno versions
* Use kpartx option to update partition mappings
* Do not fail in a venv when activate\_this.py is not found
* Fix yumdownloader cache dir
* Update readme to clarify an ubuntu bionic image is built
* Drop six usage
* Cleanup py27 and docs support
* Add back pep8 and tarball jobs
3.0.0
-----
* Drop support for python2
2.38.0
------
* Prepare to drop Python 2 support
2.37.3
------
* Revert "dib-lint: use yamllint to parse YAML files"
* use stage3 instead of stage4 for gentoo builds
* Pre-install xz package in opensuse chroot
* Add dependency on yamllint
2.37.2
------
* Revert "Revert "ubuntu-minimal : only install 16.04 HWE kernel on xenial""
* package-installs : allow a list of parameters
* dib-lint: use yamllint to parse YAML files
2.37.1
------
* Revert "ubuntu-minimal : only install 16.04 HWE kernel on xenial"
2.37.0
------
* ubuntu-minimal: Add Ubuntu Focal test build
* ubuntu-minimal : only install 16.04 HWE kernel on xenial
* ubuntu-minimal: fix HWE install for focal
* package-installs: allow when filter to be a list
* Disable all repositories after attaching a pool
* block device: update variable name
* functests: use ensure-virtualenv
2.36.0
------
* Add sibling container builds to experimental queue
* Add a focal test
* Restore SUSE tests to gate
* Switch functional tests to containers
* Bionic functional tests should be voting
* pip-and-virtualenv : fix fedora 30 install
* yum-minimal: strip env vars in chroot calls
* Fix args to debuntu functional tests
* Remove Trusty testing
* pip-and-virtualenv: drop f31 & tumbleweed, rework suse 15 install
* Remove Babel and any signs of translations
* Add centos aarch64 tests
* Do not try to use MBR on AArch64
* Make ipa centos8 dib job voting
* opensuse: fix python 2.x install
* Debuntu: add apt-transport-https
* centos 8 image build: fix mirror
* run\_functests: handle build without tar
2.35.0
------
* Add Fedora 31 support and test jobs
* Mellanox element: removed ibutils,libibcm,libmlx4-dev
* Use rpm -e instead of dnf for cleaning old kernels
* Add python-stow-versions element
* Add support for build-only packages
* bindep: remove lsb-release
2.34.1
------
* Remove hacking from requirements
2.34.0
------
* Add ensure-venv element, install glean with it
* Remove Fedora 29 job
* Do not include efibootmgr and efivars for ppc architectures
* Change tgt pkg-map to target-restore CentOS/RHEL-8
* Uncap hacking
* Add CentOS 8 support
* fix iscsi-boot element exiting build even if dracut-regenerate used
* Add efi packages for ironic-agent
* Allow python3 to be used in Debian
* Fix cache-url -f
* Add ironic jobs to the CI
* dib-lint: test elements have README.rst file
* Enable possibility to select HWE kernel for Ubuntu minimal
* Remove trusty jobs
2.33.0
------
* Fix Yum repositories and GPG keys for CentOS 8.1
* allow building of Gentoo images for non-systemd profiles
* modprobe.d: use $TMP\_MOUNT\_PATH
* Add arm64 based functional test
* Install rng-tools in Red Hat family distro images
* Update bindep for RHEL/CentOS 8
2.32.0
------
* Fix wrong URL in ironic-agent element
* Set correct python version for non-chroot scripts
* Work around Trusty ext4 metadata\_csum errors on Bionic
* Drop Xenial from functional test
2.31.0
------
* Fix regex for mirror URL substitution
* Install ndisc6 package in element script
* Make sure DIB\_DEBUG\_TRACE has a default value
* Allow zypper repos to be overrideable
* Fix login.defs config for tumbleweed
* Break retry loop on success in dhcp-all-interfaces
2.30.0
------
* Stop installing pydistutils.cfg
* Update bindep.txt for some missing dependencies
* Only wait for checksum processes
* Introduce manual setting of DIB\_INIT\_SYSTEM
* Add output for mis-configured element scripts
* Add grub-efi-x86\_64 pkg-map
* Add IPv6 support in dhcp-all-interfaces
* Remove unused job
* Adds support for GPG keyring
* vhd-util : note on Xen/RAX images
2.29.1
------
* Revert "Drop vhdutil dependency, use qemu-img"
2.29.0
------
* Revert "Pause Fedora jobs"
* Deprecates the existing "ironic-agent" element in DIB
* pip-and-virtualenv: include python3-venv for Debuntu
* Ensure nouveau is blacklisted in initramfs too
* Pause Fedora jobs
* Fix syntax error in selinux-fixfiles-restore
* Drop vhdutil dependency, use qemu-img
* Add security suite name override in debian-minimal
2.28.2
------
2.28.1
------
* centos7; use numeric DIB\_RELEASE
* Temporarily disable Fedora 30 build jobs
* Remove RA solicit delay
* Blacklist sphinx 2.1.0 (autodoc bug)
2.28.0
------
* CentOS 8 minimal testing and support
* Add NetworkManager and dhcp-client for CentOS 8
* Fix networking for CentOS 8
* simple-init: Use wrappers to call pip for glean install
* simple-init: default to NetworkManager for CentOS and Fedora
* bootloader: make serial console configurable
* Add security mirror override for debian-minimal
* pip-and-virtualenv : deprecate source for CentOS 8, new variables
* yum-minimal: Don't install yum, install libcurl
* Use $YUM instead of direct calls in more places
* Add environment switch for centos8 to use dnf
* Update redhat-common pkg-map for centos 8
* Update locales for Centos 8
* dib-python : handle centos 8
* yum-minimal : update mirrors for Centos 8
* Remove "failovermethod=priority" for Fedora (dnf)
2.27.2
------
* Install Python 3 libselinux packages for Fedora
* Ensure machine-id is not included in images
* Update gentoo test to current system profile
2.27.1
------
* Revert "Fixed use of flake8"
* Only install doc requirements if needed
* Use x86 architeture specific grub2 packages for RHEL
* Move doc related modules to doc/requirements.txt
2.27.0
------
* Add fedora-30 testing to gate
* Uninstall linux-firmware and linux-firmware-whence
* Fixed use of flake8
* Rename openSUSE 15.1 testing to 15
* Allow configurable gzip binary name
* Do not delete cracklib from /usr/share
* Fedora 30 functional and boot tests
2.26.1
------
* zypper-minimal: Don't get confused by etc/resolv.conf symlink
2.26.0
------
* simple-init: add configurable RA timeout with network-manager
* update gentoo systemd profile to 17.1 from 17.0
* rpm-distro: ensure we selinux relabel underlying directories
* Allow extra repositories to be added to images
* yum-minimal: install fedora-release-cloud
* block-device-efi : expand disk size calculation
* Don't show all elements found
* dracut-regenerate: catch failures and exit code
* Fixes packages for arm64 bootloader
* Fixes DIB\_DISTRIBUTION\_MIRROR\_UBUNTU\_IGNORE matching when empty
* Fix the pypi element for multiple mirror URLs
* Stop regex warning
* Create /etc/machine-id for RHEL images
* fix comments / spelling errors in gentoo element
* support alternate portage directories
* journal-to-console: element to send systemd journal to console
* Enable nodepool debugging for functional tests
* update version of open-iscsi that is installed on musl
* Add a nodepool job based on releases
2.25.0
------
* Only enable dbus-daemon on fedora-29
* Set router solicitation delay with using NM
* [RHEL-8] Set \_clear\_old\_files=0 in install-pip element
* disable autounmask for emerge
* ironic-agent: Use targetcli & python3-devel on rhel8
* Mailing lists change openstack-dev to openstack-discuss
* install gnupg2 by default in debian-minimal
* set default sources conf for buster as it now has a release
* Cleanup: remove useless statement
* Enable nodepool testing for opensuse 15.1
* Replace nodepool func jobs
* Move existing Zuul project config to projects.yaml
* Move Zuul config in-repo
* Add DIB\_UBUNTU\_KERNEL to ubuntu-minimal
* Sync Sphinx requirement
2.24.0
------
* Update test coverage for openSUSE/-minimal to 15.1
* Remove the rhel 8 check for xfs
* debootstrap: make default network interface names configurable
* Move pypi to dib-python
* ironic-agent: install mdadm on the ramdisk
* Use architecture-specific grub2 RPMs on RHEL8
* Increase size of EFI system partition (again)
* bindep: exclude zypper from debian-stretch
* Makes image caching more resilient
* fail early when lates build information can not be fetched
* Deprecate rhel7 in favor of rhel
* Add version-less RHEL element for RHEL7 and RHEL8
* allow the use of non-bzip compressed stages for building gentoo
* Replace git.openstack.org URLs with opendev.org URLs
2.23.0
------
* Use megabyte granularity for image extra space
* bindep: add sudo
* Update test coverage for openSUSE/-minimal to 15.0
* Use fedora-release-common for fedora 30+
2.22.0
------
* Only enable dbus-daemon for fedora-29 and below
* Switch simple-init to support python3
* openssh-server: harden sshd config
* Fix broken requirements url
* Support defining the free space in the image
* Replace git.openstack.org URLs with opendev.org URLs
* Allow specification of filesystem journal size
* Document the various global filesystem options
* Update to https:// version of \*openstack.org urls
* OpenDev Migration Patch
* Constraint networkx to <2.3 for Python 2
* Fix Fedora aarch64 image location
* debian-minimal buster support
* Also use selinuxenabled to check selinux status
2.21.0
------
* Replace openstack.org git:// URLs with https://
* Replace openstack.org git:// URLs with https://
* Minor clarifications in centos7 element docs
* Unmount internal mounts on finalise errors
* Add DIB\_APT\_MINIMAL\_CREATE\_INTERFACES toggle
* [lvm] Add Ubuntu bionic as supported distro
2.20.3
------
* Update gentoo-releng gpg key
2.20.2
------
* Add option to skip update packages
* Fix opensuse 42.3 pip-and-virtualenv
* Keep git after ironic-agent post
* set rhel minor release
2.20.1
------
* pip-and-virtualenv: handle centos image-based builds
2.20.0
------
* pip-and-virtualenv : only remove system files on centos
* Enable dbus-broker for Fedora 29
* fix systemd import-tar for gentoo
* Add python3-setuptools to bindep.txt for Fedora
* support cracklib in pam for Gentoo's musl profile
* Make sure $TMP\_BUILD\_DIR/mnt is owned by root
* [Configuration] Add missing py37 and corrected default envlist
* [Core] Change openstack-dev to openstack-discuss
2.19.0
------
* change to python36 for gentoo
* update spelling errors
* source-repositories: Replace documentation http with https links
* Delete the duplicate words in 50-zipl
* Change phase to check for dracut-regenerate in iscsi-boot
* Add policycoreutils-python-utils to bindep
* Use template for lower-constraints
* simple-init: allow for NetworkManager support
* package-installs: provide for skip from env var
* Revert "Make tripleo-buildimage-overcloud-full-centos-7 non-voting"
* Fix unit tests for elements
* Capture ramdisk test run logs
* Make tripleo-buildimage-overcloud-full-centos-7 non-voting
* Only cap pylint for python2
* Fix a typo in the help message of disk-image-create
* Add missing ws separator between words
* Add an element to configure iBFT network interfaces
* move selinux-permissive configure to pre-install phase
* Update to Fedora 29
* fix some errors for ill-syntax in README.rst
* delete the duplicate words in package-outside-debootstrap-ac93e9ce991819f1.yaml
* Increase size of EFI system partition
2.18.0
------
* Add systemd-containers functional tests
* Add ubuntu-systemd-container operating-system element
* Remove python3 legacy jobs
* Remove legacy playbooks
* Native zuulv3 tests
* Move several packages to bindep.txt
* Turn on quiet mode when logfile specified
* Fix epel repo rewrite, add to testing
* Add a post-root.d phase
* Fix DIB\_DISTRIBUTION\_MIRROR\_UBUNTU\_IGNORE regex typo
* Add support for Fedora 28, remove EOL Fedora 26
* Set EPEL mirror during openstack-ci-mirrors
* ubuntu: Add options to ignore mirror components and use insecure repos
* simplify overlay logic for Gentoo
* simplify python3.6 selection on gentoo
* Turn down pkg-map and hook copy tracing output
* enable caching for gentoo builds
* Add a pre-finalise.d phase
* Minor documentation updates
* Allow debootstrap to cleanup without a kernel
* fix a typo
* Fail build due to missing kauditd only when SELinux is enabled
* Fix DIB ubuntu-minimal running on bionic (18.04)
* ubuntu-common: Update default DIB\_RELEASE to bionic
* Remove redundant sources change/update
* Move common ubuntu environment setting to ubuntu-common element
2.17.0
------
* Only append DIB\_BOOTLOADER\_DEFAULT\_CMDLINE to default grub entry
* Fix CentOS image build failure when dib runs on system where audit disabled
* Fix bootloader packages for aarch64
* Replace assertRaisesRegexp with assertRaisesRegex
* Remove unsued opensuse jobs
* Remove legacy-opensuse-423 nodeset
* Install ca-certificate with redhat-common
* Add netcat to redhat-common map-packages
* Fix typo in installation.rst
* Only detach device if all partitions have been cleaned
* Move LVM cleanup phase into cleanup
* Add DIB element to blacklist nouveau
* modprobe DIB\_MODPROBE\_BLACKLIST should be optional
* cache-url requires curl
2.16.0
------
* Update pylint to 1.7.6, uncap networkx
* Fix for proper LVM support
* Update developing\_elements
* Add expected semicolons for dhclient.conf
* fix tox python3 overrides
* Add keyring if supplied
* Call kpartx remove in umount, not cleanup
* Move localloop to exec\_sudo
* Add new modprobe element
* block-device lvm: fix umount phase
* Don't quote names with sgdisk
* better handle existing keywords files/directories
* Add iscsi-boot element for CentOS images
* Remove redundant word
* Fix /etc/network/interfaces file contents
* Convert labels to upper case
* Fix bootloader for efi on rhel systems
* Don't run setfiles on /boot/efi
* Add iscsi-boot element
* Fix bootloader packages for rhel
2.15.1
------
* elements: pip-and-virtualenv: Handle openSUSE Leap 15
* Added release notes for Change 568697
2.15.0
------
* Don't install zypper on bionic
* Rename output log files
* Add log directory option to functional tests
* Save and close stdout on exit
* Reduce path length in PS4 for debug
* Use surrogateescape with outfilter.py
* Allow to rebuild arbitrary images
* Replace the ubuntu-minimal trusty test with a bionic one
* Remove non-maintained ubuntu-core element
* elements: zypper-minimal: Add support for openSUSE Leap 15.X
* Add Ubuntu 18.04 support
* IPA requires iptables
* Remove duplicate GRUB command line entry
* rpm-distro: set the contentdir yum var
* Trivial: update url to new url
* Fixes add-apt-keys in dpkg element
* Add pip cache cleanup to pip-and-virtualenv
* Install sudo on Gentoo images by deault
* pip-and-virtualenv: fix install-pip when centos-release-openstack is enabled
* Stop using slave\_scripts/install-distro-packages.sh
2.14.1
------
* Fix epel element for centos-minimal
2.14.0
------
* Revert "debootstrap: Call update-initramfs explicitly"
* Remove installed packages before pip install
* allow building non-gentoo images on gentoo hosts
2.13.0
------
* Don't only install python3-virtualenv
* Don't use -e to test for what might be broken symlink
* add lower-constraints job
* Set the dhclient timeout to match DIB\_DHCP\_TIMEOUT
* Formalise saving of /etc/resolv.conf
* Restore tracing on exit points of block\_device\_create\_config\_file
* delete unused module
* debootstrap: Call update-initramfs explicitly
* Change the GENTOO\_PORTAGE\_CLEANUP variable default
* Fix element-provides in debian element
* Revert "Remove tripleo jobs"
* enable systemd profile for Gentoo
* install sudo in the devuser element
2.12.1
------
* Fix default partition type
* Remove tripleo jobs
* remove portage git directory
2.12.0
------
* Updated from global requirements
* Updated from global requirements
* proliant-tools: add net-tools package to support hpsum utility
* Make the build reproducible
* Updated from global requirements
* secondary architectures use different url
* Fix encoding issue during processing output
* Fix for rhel7 iso image creation
* Fix for passing user defined value for satellite cert for rhel-common
* arm64: use HWE kernel and fix console
* Choose appropriate bootloader for block-device
* Add block-device defaults
* Fail if two elements provide the same thing
* GPT partitioning support
* update Gentoo Hardened profiles (now stable)
* Checking link status according to DIB\_DHCP\_TIMEOUT
2.11.0
------
* Install systemd earlier for Ubuntu Bionic
* update gentoo vars for new profile and python
* Fix typo doc
* Zuul: Remove project name
* Remove some redundant indents
* Set default label for XFS disks
* Don't install dmidecode on Fedora ppc64le
* Updated from global requirements
* Add support for Fedora 27, remove EOL Fedora 25
* Don't fstrim vfat partitions
* Remove RH1 check OVB jobs from configuration
* upgrade pip before using -c option
* Correct link address
* Updated from global requirements
* Add SUSE Mapping
2.10.1
------
* Revert "Dont install python-pip for py3k"
2.10.0
------
* Adding mapping for SUSE package
* Check source-repository-\* files for trailing newline
* Update Fedora defaults to 27
* ironic-agent: don't remove make
* Remove architecture rules on lshw dependency in ironic-agent
* zypper: fix package removal
* Avoid tox\_install.sh for constraints support
* Fix wrong epel-release-7\* package URL
* Add the groundwork for musl profile support
* Enable support for Gentoo overlays
* Pre-install curl
* Install fedora-gpg-keys for F27
* Make preinstall.d more deterministic
* Use EPEL for debootstrap on centos
* Fix /dev/pts mount options handling
* Make python changes more reliable
* zuul: add tripleo jobs
* Remove setting of version/release from releasenotes
* elements: zypper-minimal: Refresh repositories where necessary
* Updated from global requirements
* elements: Respect devpts mount options
* Dont install python-pip for py3k
* Enable gentoo in pip-and-virtualenv element
* zypper-minimal: Set default locale env to C.UTF-8
* Add zipl element as s390x architecture bootloader
* diskimage\_builder: lib: common-functions: Fix options for devpts mount
* Zuul: add file extension to playbook path
* Move to a common lock-file directory
* Create rescue user on ironic agent
* Use -t devpts for /dev/pts mounts
* Dont install python-virtualenv for py3k in deb
* Import legacy playbooks
* Add debian minimal requirement for arm64
* Fix grub2 dependency on arm64
* Remove dd from LVM element
* Update Gentoo element for element changes
* Update proliant-tools to support Gen10 Proliant servers
* Move fstrim to block device layer
* Add Constraints support
2.9.0
-----
* Revert "Support networkx 2.0"
* Support networkx 2.0
* Add initramfs-tools for ubuntu-minimal
* Actually sort mount-point list
* Change to install a package in 'proliant-tools'
* Create /etc/machine-id for fedora
* Use latest Fedora .qcow URL
* Updated from global requirements
* Add missing package dependency for yaml
* Mention the need of dracut-regenerate element
* Move the ordering of the dracut regenerate command
* Remove nested quotes from TAROPTS
* Use [[ for =~ matches
* Fix cylical systemd config for dhcp-all-interfaces
* Updated from global requirements
* LVM support for dib-block-device
* Increase timeout for removal
* Add netbase to ensure /etc/protocols is placed for debian
* Add kpartx as a requirement to build images
* Clear up debian element documentation
* Clear /etc/machine-id to avoid duplicate machine-ids
* Bump fedora/fedora-minimal DIB\_RELEASE 26
* Updated from global requirements
2.8.0
-----
* Move selinux packages to redhat-common
* Allow users to specify partition type in the MBR PTE
2.7.2
-----
* Use SELinuxfs to check selinux status
* Switch openSUSE to 42.3 by default
2.7.1
-----
* elements: zypper-minimal: Install tar package
2.7.0
-----
* Move setfiles to outside chroot with runcon
* zypper: Clean caches and don't cache packages locally
* doc: supported\_distros: Add openSUSE Leap 42.2/3 and Tumbleweed
* Add -m flag to setfiles for Fedora 26
* yum-minimal: pre-install coreutils
* Force install during pip-and-virtualenv
* Fix latest-limit command line
* Updated from global requirements
* opensuse-minimal: install glibc-locale
* elements: openstack-ci-mirrors: Use openSUSE mirrors for gating jobs
* Update the documentation link for doc migration
* Remove DIB\_[DISTRO]\_DISTRIBUTION\_MIRROR
* doc: Switch from oslosphinx to openstackdocstheme
* The correct option for label name in fat and vfat is '-n'
* zypper-minimal: No point in preserving the environment here
* Remove additional Bumblebee repository for opensuse element
* Enable console during kernel boot on Power
* fix readme.rst to reflect correct environment variable
* Add symlink test for resolv.conf restore
* pip-and-virtualenv: Install python3 on openSUSE
* Support for Cloud Images on ppc64le for rhel7 and centos7
* bindep.txt: Exclude gnupg2 package on openSUSE
* Avoid hanging endlessly on unreachable cache urls
* elements: pip-and-virtualenv: Use common packages for openSUSE
* Remove mirror create
* Remove centos and rhel elements
* Updated from global requirements
* dib-lint: Ignore editor temp files for linting run
* As far as block-device layout is concerned ppc64le == ppc64el
* [doc] Add some notes about PowerPC Architecture names
* Move image download tests to default skip
* Fix mkfs use wrong label option for vfat
* Use the dib python to do cleanup
2.6.1
-----
* On suse the python2 dev package is python-devel
* Move ironic-agent test to fedora-minimal
* Start at using CI mirrors for fedora/centos
* Use local mirror for ubuntu-minimal jobs
* Move apt-sources to ubuntu-minimal / move debian to skip list
* Sync after writing partition table
* Install systemd earlier for Stretch
* Fix mkfs failure when loop device is not ready
* Add timestamp output filter
2.6.0
-----
* PPC bootloader; install to boot partition
* Pass all blockdevices to bootloader
* Move rollback into NodeBase object
* Move global mount tracking into state
* Use global state to check for duplicate fs labels
* Remove 'state' argument from later cmd\_\* calls
* Add state to NodeBase class
* Use picked nodes for later cmd\_\* calls
* Don't make image & loopdev functions static
* Add env var to dump config graph
* Use class as super() argument
* Move ppc block-device default to right $ARCH
* Update tracing in block\_device\_create\_config\_file
* Add a keep-output flag for functional tests
* Updated from global requirements
* Pad state dump
* Use https in docs links
* Add missing test requirements, fixup pylint env
* Move "functional" unit tests under block-device
* Replace assertRaisesRegexp with assertRaisesRegex
* Adjust package mapping for SUSE family
* Drop support for Ubuntu precise
* Adjust package installation for openSUSE
* Trivial fix typos
* Make BlockDeviceState implement a dict
* Refactor mount-point sorting
* Remove dracut-network element
* Remove ccache
* Decode string to bytes in dracut-regenerate
* Test openSUSE 42.2/42.3 image builds
* Add state object, rename "results", add unit tests
* allow uninstalls to fail on gentoo
* Refactor: use lazy logging
* Add pylint with indent check
2.5.0
-----
* Disable recommended package installations for zypper-minimal
* Move create\_graph into config.py
* Create and use plugin/node abstract classes
* Use networkx for digraph
* Add a more generic tree->graph parser
* Adding unit testing for configuration
* drop deprecated map-services/packages from zypper element
* Produce API documentation
2.4.1
-----
* Set manifest permissions in the image
* dhcp-all-interfaces.sh - Add support for InfiniBand interface DHCP
* Move parts of Partition creation into object
* Split partition into it's own file
* Move exception to it's own file (again)
* Add weights to digraph
* Switch debian to deb.debian.org
* Remove use of 'which'
* Add dracut-regenerate elements
* Remove \_config\_error thrower
* Set manifests to mode 600 and owner root
* Use fakelogger in test\_blockdevice\_mbr
* Remove PluginBase/NodePluginBase class
* Only unmount directories that are mounted
* Updated from global requirements
* Apply setfiles on all mountpoints
* Updated from global requirements
2.4.0
-----
* Refactor: block-device filesystem creation, mount and fstab
* Remove args from BlockDevice() init
* Move to subparsers
* Clear \_\_init\_\_.py from cmd move
* Take --params from environment
* Create BlockDeviceCmd object
* Move YAML parsing into cmd.py; default to env
* Move dib-block-device implementation into cmd.py
* Move blockdevicesetupexception.py into blockdevice.py
* Remove unused val\_else\_none
* block\_device: reorder imports
* exec\_sudo: check cmd for str, log output and raise exception
* Use check\_output
* Add sort\_mount\_point method
* Refactor documentation on image creation
* Add a test to validate we can build debian vms
* Introduce exec\_sudo command
* Fix py3 error in block-device
* Refactor block-device base functions
* Add bzip2 to test install
* Add refactor of tree-like vs graph
* Set LC\_ALL in disk-image-create
* Improve documentation for image creation
* Refactor block\_device: isolate the getval call
* Refactor block\_device: passing command line parameters
* Make Gentoo package updates work more often
2.3.3
-----
* Add yum-utils as EPEL dependency
* Turn off strict\_id mode for Ec2 datasource
* Clean up dib-python symlink
* Updated from global requirements
2.3.2
-----
* Skip python3-virtualenv on <= trusty
2.3.1
-----
* pip-and-virtualenv : install python2 & 3, and default to 2
* Install pip with python interpreter
2.3.0
-----
* Move do\_extra\_package\_install to run in install phase
* Clean out apt index caches at end of image build
* Updated from global requirements
* Unify and fix doc of several Debian and Ubuntu elements
* Fix package-installs-v2 output
* Basic logging for package-installs-squash
* Use DIB\_PYTHON\_EXEC to run commands
* Fix typo in pip-and-virtualenv
* Ignore missing path in unmount\_dir
* Run dib-run-parts out of /tmp
* Don't provide dib-run-parts
* Add flag to disable EPEL
* Fix code-block in README of rhel7 element
* Fix opensuse-minimal element on non-SUSE hosts
2.2.0
-----
* Have simple-init enable network.service
* Use stevedore for plugin config of block device
* Use correct Ubuntu distro url on non-x86 arches
* Typo fix: curent => current
* functests: skip qcow2 generically but add specific test
* Add default PPC block-device layout
* Capture output in \_exec\_sudo
* Adding aarch64 support for CentOS7
* Fix typo in CMDLINE env var for bootloader
2.1.0
-----
* Allow ELEMENTS\_DIR to be configurable
* Use sphinx warning-is-error
* Updated from global requirements
* squash-package-install to use the correct python
* Make our virtualenv source py3 safe
* blockdevice.py: python3 fixes
* Fix dib-init-system for Debian Jessie and Debian Stretch
* Replace architecture-emulation-binaries with qemu-debootstrap
2.0.0
-----
* Add 2.0.0 release notes
* Send custom parameters in bootloader to GRUB\_CMDLINE
2.0.0rc2
--------
* Run indent checks in diskimage\_builder/lib
* Use OrderedDict for partitions instead of simple dictionary
* Refactor: block-device partitioning cleanup
1.28.0
------
* [suse] Handle pip-and-virtualenv install for opensuse
* pip-and-virtualenv: also handle rhel distros
* [suse] remove --no-confirm from zypper invocation
* gentoo: do not manually clean /tmp
* Fix requirements update
* Fix #1627402: fix grub2 element for ubuntu xenial
2.0.0rc1
--------
* Semi-automatic doc generation of element dependency
* Fix up doc errors
* Fix up element doc generation
* python-brickclient: accommodate python2/3 changes
* Move Ubuntu specific use\_tempaddr setting to ubuntu-common element
* Fix typo in README.rst
* yum/install-packages output cleanup
* Preinstall pyOpenSSL
* Target map-packages deprecation message
* Turn down some low-value tracing output
* Move generation of dib\_[environment|args] to manifest element
* Check return of \_load\_state
* block-device: change top level config from dict to list
1.27.0
------
* Handle blank lines in element-deps
* Don't run unit tests from run\_functests.sh
* Git ignore coverage stuff
* Refactor: block-device handling (partitioning)
* Add DIB\_IPA\_COMPRESS\_CMD option
* ironic-agent: use /sbin for modprobe
* move post-install.d to finalize.d
* Bump fedora release to 25
* Fix dhcp-all-interfaces for ubuntu-minimal xenial
* Use strings in package-installs follow output
* Don't set base element path in run\_functests.sh
* Fix coverage report
* Use %i instead of %I in dhcp-interface@.service
* Remove hardcoded components
* Set grub device in /etc/default/grub
* Replace yaml.load() with yaml.safe\_load()
* Unify tidy up logs in lib/img-functions
* Also check bin/ for tabs
* Handle failure of carrier check in dhcp-all-interfaces.sh
* Fix Gentoo builds on Ubuntu 16.04 Xenial hosts
* Make DHCP timeout configurable
* Run dhcp-interface@.service after network.target
* Update component docs to refer to ironic-agent
* Change "Openstack" to "OpenStack"
* update pkg-map entries for python3
1.26.1
------
* Revert "Revert Xenial to Python 2"
* Dont run with VIRTUAL\_ENV set
* dib-lint: python3 compatibility fixes
* H803 hacking have been deprecated
* Update documented default Ubuntu version
1.26.0
------
* Revert Xenial to Python 2
* debootstrap: avoid duplicate network configuration
* Start func testing on centos-minimal again
* Increase func testing for ubuntu-minimal element
* Remove yum chroot caching
* Set grub timeout default
* Switch py34 tests to py35
* Add get\_elements; preserve backwards compat for expand\_dependencies
* Update our package classifiers
* set default DIB\_PYTHON\_VERSION=2 for rhel7
* Add squashfs output image format
1.25.2
------
* Add output image format tgz support
* Install dracut-generic-config package
* Switch to openSUSE Leap 42.2 release by default
* FIx the DIB\_CLOUD\_INIT\_ALLOW\_SSH\_PWAUTH variable name in README file
1.25.1
------
* Add ubuntu-precise support to dib-python
* Fix bootloader element on ppc
* Create ubuntu/fedora test for pip-and-virtualenv
1.25.0
------
* Recreate initramfs within loopback image
* Pip install as 10- incompatible with 05-heat-cfntools
* Support sysv init system used by Debian Wheezy
* elements: dib-python: Add python2 as the default version for openSUSE
* Fix pip-and-virtualenv to work with python3
* Allow package-installs to parse DIB\_PYTHON\_VERSION
* Add install-types as pip-and-virtualenv dep
* Disable centos6 testing
* Move pip-and-virtualenv source install to 10-
* Speed up chroot checking loop
* Don't set the executable bit on dhcp-interface@.service
* Make dib-python use the default python for distro
* Allow disto-specific mirror settings
* Put MKFS\_OPTS after filesystem type
* Update hpssacli to ssacli in proliant-tools element
* Update sysctl-write-value to do conflict checking
* Delete deprecated Hacking in tox.ini
* elements: Drop executable bits from environment files
1.24.0
------
* Fix --version display
* DIB element to support cinder local attach/detach functionality
* Perform package install outside of debootstrap
* Improve checksum performance for images
* Activate virtualenv in disk-image-create
* elements: zypper-minimal: Add ca-certificates-mozilla package
* Changed author and author-email
1.23.0
------
1.22.2
------
* yum-minimal: add systemd to initial install
* Catch errors in DIB\_INIT\_SYSTEM export
* Replace six.iteritems() with .items()
* Trace package install in package-installs-v2
* Special case dib-python in dib-lint
* elements: Drop unneeded DIB\_INIT\_SYSTEM usage
* elements: Add new openssh-server element
* add option to configure cloud-init to allow password authentication
* elements: pip-and-virtualenv: Add python-xml dependency
1.22.1
------
* Fix runtime ssh host keys script
* Turn off tracing around pid/chroot check
* Fix a typo
1.22.0
------
* Change path for dnf arch override so basearch is not overwritten
* Fedora AArch64 (64-bit ARM) support in diskimage-builder
* Disable all repos in os-refresh-config too
* lib: common-functions: Fix tmpfs umounting
* add support for SUSE in dhcp-all-interfaces
* simplify ARCH param for rhel/centos param can be x86\_64 and amd64
* debian: install dialog package
* Install lsb package by map name instead of package name
* In disk-image-create, append to INSTALL\_PACKAGES instead of clobbering
* Cleanup yumdownloader repos
* Updated from global requirements
* Remove execute perm from disk-image-create
* Move dib-run-parts into diskimage-builder
* Avoid disabling rhel-7-server-rh-common-rpms
* elements: zypper-minimal: Mount common pseudo filesystems
* Updated from global requirements
* dhcp-all-interfaces: support Centos/RHEL 6
* Move diskimage-image-create to an entry point
* Move elements & lib relative to diskimage\_builder package
* Fail on element-info error
* elements: zypper-minimal: Refresh repositories after adding the cache
* elements: opensuse-minimal: Add support for building Tumbleweed images
* Fix ironic-python-agent image not loading vfat mod
* Don't include openstack/common in flake8 exclude list
* Drop MANIFEST.in - it's not needed by pbr
* Changed the home-page of diskimage-builder in setup.cfg
* Remove RedHat grub workaround install
* Add support for bindep.txt
* Don't log datestamp by default in functional tests
* elements: zypper: Do not pull recommended packages
* Turn down yum install-packages
* Don't set tracing in environment files
* elements: source-repositories: Add git package mapping for SUSE
* elements: growroot: Add SUSE package mappings
* elements: runtime-ssh-host-keys: Add openssh-client mapping for SUSE
* Don't use ssh-keygen -A for init scripts
* elements: simple-init: Remove SUSE interfaces
* Document install of diskimage-builder on Gentoo
* Add element for setting sysctl values
* start cloud-init-local in the boot runlevel
* Fix formatting for supported distros in docs
* Rename devloper documentation to developer guide
* Remove copyright from docs / toc
* Use globaltoc in docs for sidebar
* Fix developer guide TOC
* Add low-hanging-fruit bug tag to docs
* Add bugs link to docs
* Generate ssh-hostkeys on boot for ironic agent
* Enable release notes translation
* Add pkg-map for gentoo to runtime-ssh-host-keys
* Remove deploy element
* Remove deprecated deploy-ironic element
* Remove deprecated ironic-discoverd-ramdisk
* Remove deprecated expand-dependencies arg
* Remove deprecated serial-console element
* Remove deprecated map-services
* Remove deprecated map-services
1.21.0
------
* Create (md5|sha256) checksum files for images
* Add opensuse-minimal element
* Add zypper-minimal element
* Move the opensuse mkinitrd script to the zypper element
* Fix a command in Developer Documentation
* Default to http://ftp.us.debian.org/debian for debian-minimal
* Updated from global requirements
* Move opensuse utils to zypper so they can be shared by SUSE-based distros
1.20.0
------
* Disabling all previous repos registered in the system
* Fix typo in extracting root partition
* Create runtime-ssh-host-keys element
* Fix grub installation for RHEL
* Add release notes for block device handling
* Shorten DHCP timeout in dhcp-all-interfaces
1.19.1
------
* yum-minimal: Disable excludes when installing pkg manager
* Add libselinux-python to yum-minimal
* elements: opensuse: Add support for openSUSE Leap
1.19.0
------
* Remove EPEL as hardcoded dependency of centos elements
* Remove unnecessary dkms install from base
* Fix mellanox element required kernel modules and user space packages
* don't configure 'lo' for dhcp
* Move element-info to a standard entry-point
* Refactor: block-device handling (local loop)
* Convert pkg-map and svc-map copies to explicit variables
* Add IMAGE\_ELEMENT\_YAML and get\_image\_element\_array
* Making element overriding explicit
* fix systemd resource deadlock
* Add option to be able to run\_functests.sh in parallel
* Document source glean installs in simple-init
* Disabled IPv6 privacy extensions
* Generate and use upper-constraints for ironic-agent
* Explain difference between two envvars
* Add tests for building \*-minimal images
* Spec for changing the block device handling
* Update portage only if needed
* Update GRUB\_MKCONFIG for detecting what's installed
* Allow ramdisk-create to run without $USER set
* Use temp file for du calculations
* Clarify OVERWRITE\_OLD\_IMAGE docs
* Add blurb about communication to docs landing page
* Change DIB\_IPA\_CERT resulting file name
* Allow to skip kernel cleanup
* Add specs dir
* Add "audit"package to yum-minimal
* secure\_path in sudoers: deal with possible quotes
* Optionally remove portage files
* Generalize logic for skipping final image generation
1.18.2
------
* add no\_proxy when debootstrap trying to use proxy
* Correct order of parameters in call to qemu-img convert
* Correct order of parameters in call to tune2fs
* Fix proliant-tools dependencies
* Fix packaging problems for Debian
* Remove the escape in the centos7 README file
* Spec for changing the block device handling: partitioning
* yum-minimal: set locale.conf and tz in chroot
* Revert "Revert "Pre-install pip/virtualenv packages""
* Don't create an ironic-agent image just to delete it
* Make Fedora 24 the default
* Check sudoers file after editing
1.18.1
------
* Add 1.18.1 releasenotes
* Revert "Pre-install pip/virtualenv packages"
* package-installs: add list to arch and "not-arch" list
* Export YUM variable in centos bases
* Clear up "already provided" message
* Fix the bug that "mktemp: failed to create directory"
* dmidecode does not exist for ppc64/ppc64el
* Updated from global requirements
1.18.0
------
* Convert element\_dependencies to logging
* Release notes for 1.18
* Make xenial the ubuntu default
* Clean more from ironic-agent ramdisk image
* Updated from global requirements
* Handle locales install on Fedora 24
* Fix copyright in docs
* Run RHEL system unregister element earlier
* Updated from global requirements
* Fix sphinx-build to not depend on diskimage-builder
* Pre-install pip/virtualenv packages
* Ironic agent kernel should be owned by user building image
* Introspect logging testing more
* Add python logger configuration
* Remove discover from test-requirements
* Move pkg-map to dib-python
* Add cinder-backup mappings
1.17.0
------
* Release notes for 1.17.0
* Cleanup source-repositories output
* Refactor: rename temporary directories
* Refactor: remove unused functions
* Rework yum-minimal locale cleanup
* Remove Fedora 21 from test-build
* Export die() function
* Fix variable unbound error while REPOREF="\*"
* Handle file magic type varying order matching
* Remove deprecated overriding of cloud-init defaults
* Add cloud-initramfs-growroot for Precise
* Add release to pkg-map
* Export FS\_TYPE and remove hardcoded ext4 values
* Add PS4 to show file/function/line in debug output
1.16.1
------
* Revert "Revert "Properly fail/trap in eval\_run\_d"" and fix PIPESTATUS
* Fix path issue for locale-archive.tmpl
* Revert "Properly fail/trap in eval\_run\_d"
* Add dhcp-all-interfaces.target for syncing units
* Small doc update, add link to relnotes
1.16.0
------
* centos-minimal: can be used with base
* Properly fail/trap in eval\_run\_d
* Add 1.16.0 releasenotes
* Do not remove sudo in ironic-agent
* Fail functests if refusing to run tests
* Install docker for tests
* Fix apt-sources configuration for debian-minimal
* Add install-bin element
* tests/elements/fake-os: add '/tmp' as top level dir
* Updated from global requirements
* Add a best-effort sudo safety check
* Fix OpenSUSE support
* Install proliantutils in IPA's virtualenv
* Add documentation for dib-lint
* Add test dependency installation on Gentoo
1.15.0
------
* Use generic "dhcp-client" name
* Split YAML & JSON parsing
* Add some output to dib-lint
* dhcp-all-interfaces depends on dib-init-system
* dhcp-all-interfaces depends on dhcp
* Add Gentoo to the dhcp-all-interfaces element
* Updated from global requirements
* yum-minimal: strip locale archive
* Add releasenotes
* Change to latest CentOS-6 image
* Document upstream executable numbering convention
* Move selinux restore to end of finalise
* yum-minimal : better cleanup of initial yum failure
* Add EPEL as requirement of centos-minimal
* Allow skipping the md docs check
* Don't stop dib-lint on first flake8 failure
* Fix up EPEL element
* Updated from global requirements
* Support to add certificate in ironic-agent
* simple-init: Fix path for /etc/ssh test
* Fix disk usage report
* Add qcow2 generation for better test coverage
* Skip gentoo test
* Turn of tracing around du invocations
1.14.1
------
* Fix add-apt-repository package for precise
* Fix ssh key cleanup to run in chroot
* Debian: dont set always the hostname to debian
1.14.0
------
* Remove ssh host keys when using simple init
* dib-run-parts: make cp to target root more robust
* Set tgtd not auto-start on OS boot time
1.13.0
------
* Handle unconfigured interfaces for dhcp-all-ifaces
* Really remove all interfaces in dhcp-all-ifaces
* ironic-agent postinst fails on systemd with no iptables
* add pkg-map to pip-and-virtualenv element
* Turn down tracing for source-repo cache
* ironic-python-agent should use console output
* Add psmisc to the packages for ironic-agent
* Add new posix element
* Note requirement for parted on gentoo hosts
* Remove all interface configs for simple-init
* Set default locale to image in debootstrap element
* Make ubuntu-core support releases
* Add testing for the Gentoo element
* Updated from global requirements
1.12.0
------
* Use fstrim to prep the block device
* Revert "Zerofree the image if possible"
* centos-minimal does not provide base
* Add lshw package to ironic-agent
* yum-minimal: clear our rpm/dnf/yum data in chroot
* Add image size report
* Zerofree the image if possible
* Create new partitioning-sfdisk element
* Fix spurious = in dib-python readme
* Fix cloud-init-disable-resizefs README title
* Reorder developer quickstart docs
* Add --version option to disk-image-create
* Add Gentoo to the list of supported distributions
* Prioritize venv python on host
1.11.1
------
* Fix building on gentoo hosts
* Depend on ifupdown in simple-init
* Rework functional test runner
* Revert "Correct rhel-common for rhel6"
* Adding InfiniBand Support
* Add force-confdef in debian package install
* Install IPA in a virtual environment
* Don't cache debootstrap rootfs by default
* Don't remove python3 & grubby in 99-remove-extra-packages
1.11.0
------
* debian-minimal: configurable debootstrap components
1.10.0
------
* Remove eclean-dist as it's not available by default
* Reorder the package-uninstall action
* Do not remove python-dev from ironic-agent image
* yum-minimal: pre-install base packages
* Fix dpkg element for Ubuntu Xenial
* Refactor growroot for debuggabilty
* Fix startup race with growroot/systemd
* Replace sfdisk partitioning with parted
* Switch simple-init to pip-and-virtualenv element
* Revert "Skip centos functional testing"
* Use dnf to cleanup old kernels
* Increase interface has link retries to 20
* Fix growroot for Gentoo's openrc
* Fix tar listing in functional tests
* Add support for OpenRC to dib-init-system
1.9.0
-----
* Add new cloud-init element
* Fix Gentoo hardened support
* Skip centos functional testing
* Fix package-installs for python3
* Add support for gentoo to simple-init
* Mark ironic-discoverd-ramdisk as deprecated in favor of ironic-agent
* Add Gentoo support to growroot
* Add support for Gentoo to source-repositories
* Remove outdated translation files
* Only match #!/bin/bash in scripts
* Fix debian-minimal image building
* Updated from global requirements
* Don't use wc -l for the umount check
* Cleanup unmount\_dir function
* Add systemd/fedora support to growroot
* Remove argparse from requirements
* Revert "Use pip 7 for ironic"
* Updated from global requirements
* Force dib-python symlink creation
* Remove zero length files
* Use pip 7 for ironic
1.8.0
-----
1.7.2
-----
* Add inetutils-ping to test-deps
* Move speedup section to image building guide
* Add pkg-map for redhat
* Revert "Fix discoverd bug when dmidecode reports GB"
* Print unparsable file in pkg-map
1.7.1
-----
* Fill out bootloader pkg-map
1.7.0
-----
* Initial add of gentoo support for diskimage-builder
* Prune old branches when updating cache
* Correct rhel-common for rhel6
* deploy-ironic: Fix syntax error when checking for root device hints
* Add pip-and-virtualenv element
* Run package-intalls with py3k if we must
* The mirror for installing epel is timing out
* Properly account for pipefail during cleanup
* Make dkms element depend on dkms package
* py26 is no longer supported by Infra's CI
1.6.0
-----
* Fix discoverd bug when dmidecode reports GB
* yum-minimal : install selinux policy packages
* yum-minimal: do not configure eth0 & eth1 for DHCP automatically
* yum-minimal: leave behind dummy /etc/resolv.conf
* Fix growroot device detection
* Package installs defaults to tracing off
* Don't print trace unless trace is on in pkg-map
* Fix unmount/remove race in cleanup\_build\_dir
* Make check for image-should-fail quiet
* Document byte-to-inode ratio
* Split vm and bootloader elements
* Deprecated tox -downloadcache option removed
* Add a new element hpdsa
* Add dib-python element
* Allow grub2 to build with opensuse
1.5.0
-----
* Add kmod to package-installs of ironic-agent
* Load the 8021q kernel module in simple-init
* Add openssh-server package-install to local-config
* Fix grub-efi-amd64-signed install failure
* Fix fedora-minimal on CentOS builds
* Follow up patch for 25d3ee547176528e86d42eb026c99a134dff9452
* Updated from global requirements
* Add centos7 test
* Add DIB\_LOCAL\_CONFIG\_USERNAME to local-config
* Use ironic-agent for source-repositories
* Add dynamic-login element
1.4.0
-----
* Remove fedora-minimal/install.d/99-ramdisk
* Remove cloud-initramfs-growroot package
* Extend root device hints for different types of WWN
* Move install-types doc to user guide
1.3.0
-----
* Fixup RPM db path when building Fedora on Ubuntu
* Remove unused RELEASE\_RPMS variable
* Fix diskimage-builder image size
* Add proliant-tools element
* Add missing six requirement for svc-map element
* Fix fedora-minimal kernel-install on older platforms
* Clarify what fedora-minimal/install.d/99-ramdisk is doing
* Fix uniqueness check of initrd in fedora-minimal
* Updated from global requirements
* debian: cloud hostname ignored by Jessie
* Selectively prune /root for ironic-agent ramdisk
* Add a tox target to run functional tests locally
* Create YUM\_CACHE\_DIR in yum-minimal
* Use DIB\_EPEL\_MIRROR when finding the epel-release package
1.2.0
-----
* Add support for Xen PV disks
* Add --force to grub-install
* Preserve env when calling yum with sudo
* Define a default for $YUM
* Fix tests/test\_functions.bash
* Fix devuser pubkey defaults
* Reset yum/dnf cache to correct location
* Remove extra install of release pkgs in fedora-minimal
* Update default fedora-minimal to f22
* Add Fedora 22 support to yum-minimal
* Enable decimal value for $DIB\_IMAGE\_SIZE
* Update rhel7 element readme
* Move yum-based install into function
* Update apt-preferences element README from free text to table formatting
* Update apt-conf elements README from free text to table formatting
* Fix title of env vars section of fedora README to match template
* Fix title of env vars section of redhat-common README to match template
* Avoid transcending /proc with find
* Reorder the script number of 'elements/dkms/post-install.d/99-dkms'
* dib-lint: ignore blank lines in element ordering
* Restrict search for python object files to ./usr
* Add flake8 to requirements
* agent: ensure vmlinuz file does not exist before hard-linking into it
* Prevent overwriting of user modified blacklist.conf
* Remove quotes from subshell call in bash script
* Contains the directory name of /sys and /proc
* Install 'gdisk' when building ramdisk with ironic-agent
* Use --nodeps when installing fedora-release
* Output failing lines when dib-lint finds wrong indents
* Adds debian support to iso element
* ironic-agent element to output a .kernel file
* Add functional test for ironic-agent on Fedora
* Updated from global requirements
* Add option to set EPEL mirror
* Remove dnf workaround in ironic-agent
* ironic-agent: remove python object files
* Install ironic-agent dependencies via package-installs
* Fix variable misspelling error
1.1.2
-----
* Prettyfy source-repositories doc
* Prettify 'Caches and offline mode' documentation
* Download a compressed centos cloud images
* Prettify 'Developing Elements' documentation
* Add centos7 support for DIB\_DISTRIBUTION\_MIRROR
* Don't create a centos yum repository
* Add #!/bin/bash to library functions
* Make README.rst a bit more generic
* Deprecate the deploy-ironic element
* dib-lint: validate json/yaml files
* Make sure dnf won't autoremove packages that we explicitly installed
* Handle install with pip -e
* doc: migrate from README.rst to Sphinx
* Update fedora elements README from free text to table formatting
* Update redhat-common elements README from free text to table formatting
* svc-map: do not specify user/group for install
* Activate pep8 check that \_ is imported
* Remove grub2 in redhat-common/pre-install.d/15-remove-grub
* Remove old entries from MANIFEST.in
* ironic-agent: ensure dmidecode and ipmitool are installed
* [ironic-agent] Use svc-map for enabling agent
* Update dpkg elements README from free text to table formatting
* Fix ironic-image pkg-map
1.1.1
-----
* Run growroot after all filesystems are mounted
* Updated from global requirements
1.1.0
-----
* Fix a typo in README.rst
* create growroot element
* Install-static depends on rsync
* Fix init-scripts element path munging and deps
* Pin the Fedora mirror for testing
* Reduce the size of the ironic-agent ramdisk
* Set and export DIB\_RELEASE for centos7
* Correct URL in ironic-agent README
* Add curl to ironic-agent package installs
* Handle modern sfdisk and correctly align image partition
* Set DIB\_RELEASE for the Debian test-element
* Add documentation of output formats for users
* Remove docker doc from docs
* Add ability to build ironic-python-agent ramdisk from packages
* Adds Ubuntu and Debian to ironic-python-agent Support-list
* Fix link in installation doc
1.0.0
-----
* debian: properly configure interfaces
* typos on the document
* Only warn about missing map files with debug
* Fix test cleanup trap to cleanup tmpdir
* Support building ACIs
* Document what our stable interfaces are
* Add element to disable cloud-init resizefs
* Update default Fedora to 22
* Cleanup yum downloading
* Add base element for using docker as image base
* Add docker output support
* Add init-scripts directory support
* Document our supported distributions
* Use official mirror name for debian-minimal
* debian: install DHCP client and ifconfig packages
* Removes hardcoded refrences for ethernet interface
* Remove deprecated disk-image-get-kernel
* opensuse: Update README
* openSUSE: Fix link to the images download folder
* Use the init scripts from the glean package
0.1.47
------
* Have glean set hostname if a config drive exists
* Add oat-client element
* Allow source-repositories ref to be "\*"
* Only chown tmp dirs when they are a tmpfs mount
* Work around yum/dnf differences
* Add YUM variable to for Fedora >= 22
* Optimize Python install in deploy-targetcli
* Updated from global requirements
* dib-lint: make it work on Mac OS X
* Wait longer for root device to become available
* Revert "Revert "Ensure DIB\_RELEASE is exported for fedora""
* Add test for centos 6
* Document only exectuables in phase dirs policy
* Change simple-init to use a PATH variable
* Add explicit f21 test
* Dont fail if were missing setfiles
* Revert "Remove unused map\_nbd function"
* ramdisk: enable ppc64 support for symlink
* Cleanup the build directories earlier
0.1.46
------
* Revert "Ensure DIB\_RELEASE is exported for fedora"
* CentOS-6 resize support
* Follow symlink for elements
* Add grub2 element
* Don't log tmpfs message during cleanup
* Support custom kernel cmdline args for deploy iso
* Address follow-up comments
* Add Ironic API version to passthru URL for deploy-ironic
* Skip backups and other non-relevant files for dib-lint
* Use tar -t instead of -l because centos 6
* Make it clear that tmpfs is optional
* Ensure DIB\_RELEASE is exported for fedora
* rhel-common element should not use attach with activation key
* Make $DIB\_YUM\_REPO\_CONF accept a list of repo files
* Pass glean output to the console log
* Use environment setfiles
* redhat-common: rename 01-clean-old-kernels.sh to drop .sh extension
* Cleanup /tmp in the guest
* Add debian build test case
* Install debian locales
* Add smoketest for fedora
* Initial element tests
* doc: small snippet about operating system elements
* Use Centos 7 cloud image symlink
* vm: use $DISTRO\_NAME instead of lsb\_release
* rax-nova-agent: switch to $DISTRO\_NAME
* ramdisk: switch from lsb\_release to $DISTRO\_NAME
* Simple-init should disable cloud-init
* Make managing hosts entries optional
* Have simple-init regenerate ssh keys on boot
0.1.45
------
* Remove install of vlan/vconfig from base
* package-installs: fix error case for Python 2.6
* centos/centos7: switch to epel element
* epel: support centos element
* Address comments on virtual media device label commit
* debootstrap: fix syntax issues
* Fix disk image create errors behind proxy
* force arch amd64 for EL7 elements
* Add packages required for iscsi extension in agent
* Package ldlinux.c32 along with isolinux.bin if it exists
* Add install\_test\_deps script
* Fix $DIB\_DEFAULT\_INSTALLTYPE export statement
* Export DIB\_RELEASE in centos
0.1.44
------
* debian-minimal: Remove -backport's restricted + universe
0.1.43
------
* Actually set a sane PATH for inside chroot
* Turn docs warnings into errors and fix issues
* Generate locales in debian-based elements
* Split the debootstrap functions into an element
* Install glean from openstack source
* Support arch-specific package-installs
* Add functional smoke test for disk-image-create
* Updated from global requirements
* Mount with -o nouuid for XFS base images
* Port centos-minimal to yum-minimal
* Use shorter temporary file names for kpartx
* Fix image size to fit filesystem journal
* Use labels for virtual media dev in Ironic ramdisk
* Append full path to img-functions:run\_in\_target
* Updated from global requirements
* Remove unused map\_nbd function
* update the dib centos7 baseurl to use a mirrorlist
* openSUSE update
* Add a yum-minimal element that just uses yum
* Add element to process config-drive network info
* Break install-types out of base
* Support VHD output format
* Update packages earlier
* Fix to load only signed kernel in UEFI secure boot
* Add element ubuntu-signed to provide signed kernel
* Update install docs to be more user friendly
* Switch default Fedora image to F21
0.1.42
------
* Clean up targetcli ramdisk installation
* Make troubleshoot work with dracut ramdisks
* Do not export REG\_HALT\_UNREGISTER between hook scripts
* Add generic devuser element
* Update cloud-init-datasources README
* Improved apt-sources README
* Don't trace RHEL Registration scripts
* Try 5 times for rmdir command call after umount
* Generate the default en\_US locale
* No markdown docs for elements
* Create the dracut directory if not existing already
* Export image properties
* Correctly handle raw type ordering
* Create a user guide
* Report status of boot loader installation to Ironic
* Fix dhclient in Fedora ramdisks
* Use find instead of ls
* Reorder tox environments
* Add py34 to tox
* Run svc-map tests
* Open MKFS\_OPTS for extension in disk-image-create
* Short circuit qemu-img convert for raw images
* Download of translations not properly disabled in APT
* Split dib-init-system into its own element
* Handle non-cloud-init installs
* Dont try to unmount if were not using tmpfs
* Run udevadm settle after kpartx -l
* Refactor deploy ramdisk to allow use of targetcli
* Allow elements to add drivers to dracut
* Fedora: install redhat-rpm-config
* Cleanup/restify components.rst
* redhat-common: Fix MariaDB-Galera-server case
* Flagging ubuntu-minimal as untested
0.1.41
------
* Ironic: Deploy ramdisk to find the right root device
* Ironic: uefi localboot support
* Convert leftover unconditional set -x to DIB\_DEBUG\_TRACE
* Fix check for installtype
* Fix incorrect package name dmidecoded to dmidecode
* ironic-agent: exclude content of /tmp from initramfs
* UEFI secure boot support for iso element
* Install Fedora kernel-modules pkg for iscsi\_tcp
* Allow disabling apt-get clean
* Set DIB\_RELEASE in ubuntu element
* CentOS 6 Element
* Fix race in svc-map
* Use package-installs on dpkg-based elements
* openSUSE update
* package-installs: work with Python < 2.7
* Split out README into separate files
* Add wget to package-installs.yaml for epel
* Updated readme
* Fix unbound variables in apt-{preferences,sources}
* pkg-map: respect --missing-ok also on missing pkg-map file
* update epel version number in epel element
* Allow setting DIB\_PIP\_RETRIES
* Add a link to the "Writing an element" section
* Quote to handle empty DIB\_RELEASE
* Namespace PYPI\_MIRROR\_URL vars with DIB
* Fix memory detection in ironic-discoverd-ramdisk
* Add documentation of DIB\_IMAGE\_CACHE variable
* Simplify ironic-discoverd-ramdisk
* Support assigning IPMI credentials in ironic-discoverd-ramdisk
* Use oslosphinx for docs site
* Standarise tracing for scripts
* Bump to hacking 0.10
* Fix the bootloader on UEFI machines
* Add \`tox -edocs\` capability
* Create docs site containing element READMEs
* Fix type in DIB\_DISTRIBUTION\_MIRROR use
* Pass BOOTIF to ironic-discoverd from the ramdisk
* Use package-installs for ubuntu and base elements
* Add apt-get autoremove
* Add install-static element
* Enable vm element to create PowerPC image
* Add no\_timer\_check to vm grub cmdline
* Dont fail if we have no old-style package-installs
* Use sudo -E when squashing package installs files
0.1.40
------
* setfiles consistently
* Ironic: Local boot
* Corrected \`element-info\` usage
* Add installtype support to package-installs
* Fix issue with leaking /tmp/image.\* directories
* ironic-discoverd-ramdisk element cleanup
* Add support for using local PowerPC VM image
* ramdisk-image-create: add support for vmlinux file
0.1.39
------
* Switch manage\_etc\_hosts from True to localhost
* Set http\_proxy to retrieve the signed Release file
* Run Registration Once
* Fix Satellite Repo
* Use DIB\_IMAGE\_CACHE in dpkg element
* Fix for RHEL6
* Allow for disabling rhel registration
* dracut-ramdisk: fix support for elements with ramdisk-install.d
* Don't trace RHEL registration scripts
* Ignore stderr from pkg-map
* Allow absolute path to image with ironic-agent
* Add install section to Ironic agent systemd service file
* Fail helpfully if uuidgen is missing
* Continue past dependency ordering diffs
* Add element for ubuntu-core
* Add rax-nova-agent element
* Add minimal ubuntu and centos base elements
0.1.38
------
* Rework package-installs to collapse on build host
* Fallback to a boot\_server kernel param if ip= not passed
* Add some speedups to dpkg
* Deprecates username and password from boot time registration
* Use env python
* Fix repo enablement for RHEL during registration
* Allow injecting arbitrary yum repo configuration
* Don't use lsb\_release
* Fix rst rendering
* Add Activation Key Support For Customer Portal
* Migrate to new package-installs
* Add new package-installs system
* Improve --ramdisk-element docs
* Unset requiretty if it exists in sudoers
* Remove the grub2 install from redhat-common
* Remove use of sudo from yum pre and post elements
* Add element for hardware discovery ramdisk for ironic-discoverd
0.1.37
------
* disk-image-create: fix test when no argument is given
* Warning when using pypi element without a mirror
* Make some pkg-map errors soft
* Fail helpfully if no elements are specified
* Check python with flake8 instead of dib-lint
* Update RHEL Registration
0.1.36
------
* Deprecate map-packages, replaced by pkg-map
* Allow multiple identical sources
* Add DIB\_DEBOOTSTRAP\_EXTRA\_ARGS environment variable
* deploy-kexec depends on deploy
* Remove duplicate binary-deps from dracut-ramdisk
* Add element for building ramdisk with ironic-python-agent
* Simplify Dracut cmdline script
* Add deprecation warning when using map-services
* Fix indent exclusion
* Install PyYAML for the svc-map element
* Install lsb\_release from package
* Enable RHEL Registration
* Support installing packages by default
* Optimize speed of deletion in find command
* package-installs assumes packages have a pkg-map
* Updated from global requirements
* Unset trap before dracut ramdisk build script exits
* iso element to use 'search --label' for grub
* Update Debian repo to retrieve signed Release file
* export DIB\_ROOT\_LABEL to make it global
0.1.35
------
* Use binary-deps.d for dracut ramdisks
* Move busybox binary-dep to ramdisk element
* svc-map requires PyYAML
* iso element to build bootable ISO images
* Handle extra spaces in merge-svc-map-files
* Enable dracut deploy ramdisks
* Revert "introduce $SYSTEMD\_SYSTEM\_UNIT\_DIR"
* Avoid overwritting of hooks
* Disable all interfaces on eni systems
* Remove first-boot.d support
* Force empty $TMPDIR inside the chroot
* Allow source-repositories to be disabled completely
0.1.34
------
* Move to final release of CentOS7 images
* Consolidate lsb\_release source-repositories
* Allow for multiple image outputs from raw source
* Echo that qemu-img convert is running
* Preserve exit value when leaving cleanup trap
* Don't re-install cloud-init for centos7 images
* Check for epel before installing it
0.1.33
------
* Do not try to detach non-existant loopback devices
* Move install bin from rpm-distro to yum
* Use DIB\_IMAGE\_CACHE everywhere
* Save extended attributes when creating tar
* Ensure epel7 is installed only on rhel7/centos7
* Update EPEL release rpm
* Fix $DISTRO\_NAME usage for centos7 element
0.1.32
------
* Add unit test for cache-url
* Use $((EXPRESSION)) instead of $[EXPRESSION]
* Install openstack-selinux on RHEL
* Updated from global requirements
* Move dpkg manifest creation to finalise
* Allow custom rootfs labels
* Add svc-map element
* Refactor ramdisk element to allow alternate implementations
* Updated from global requirements
* Adds EPEL repo, cleans up rhel7 repos
* Update to newer Centos7 images
* Provide ability to build images for other architectures
* Handle non-existing \*generic kernel and initrd
0.1.31
------
* Change order for yum-repos file in centos7 element
* Make diskimage-builder work in Docker
* Add ceilometer service mappings
0.1.30
------
* Run environment.d hook for manifests earlier
* Reset yum configuration in post-install.d
* Add vmedia boot support for deploy-ironic element
* opensuse: Support pkg removal in install-packages
* Use package-installs in more elements
* Replace backticks with $()
* Fix openSUSE kernel/initrd detection
* Correct statement about ramdisk and tmpfs
* Fix for host env leak into grub
0.1.29
------
* Fix openSUSE cloud image download and extraction
* Add element-manifest
* Changed serial console setup
* Map dkms package for SUSE in base element
* Fix capitalization of openSUSE
* Fix ramdisk pkg-map for openSUSE
* Truncate instead of deleting log files
* Lock around extract-image downloads and extracts
* Add support for flashing ILO BMC's from ramdisks
* Remove docs about deprecated pypi-mirror tool
* Use dib-run-parts from dib-utils
0.1.28
------
* Make RHSM registration set -u safe
* Add service mappings for ironic
* Revert "Remove the temporary deploy element after rename"
* Remove hardcoded version
* Increase source-repositories support for tarballs
* map-services: add openstack-nova-novncproxy
* Allow to specify an empty package list in pkg\_map
* Use package-installs in fedora
* package-installs for pre-install.d/post-install.d
* Formatting fixes for dhcp-all-interfaces
* Remove disable\_interface from dhcp-all-interfaces
0.1.27
------
* Relabel filesystem if SELinux is available
* debian: exclude contents of /tmp from debootstrap tarballs
* Centralize handling of /lost+found
0.1.26
------
* Cleanup apt cache after grub install
* Extend/fix support for extlinux bootloader
* Create cache directory
* Remove package mapping for mariadb-rdo-galera-server
* Adds RHEL common element
* Support for UBoot
* Add dib-lint exclusions
* Revert "Cleanup apt cache after grub install"
* Fix sourcing of environment files
* Add virtual media boot support in ramdisk element
* Cleanup apt cache after grub install
* Update RHEL7 element since release
* Bump hacking to 0.9.x series
* Lock around ubuntu tarball download
* Avoid to install a blank list of packages
* Don't try to install if packages is empty
* Add a ramdisk-install.d hook path
* Initial centos7 support
0.1.25
------
* Update RHEL 6.5 Image name
* Add dhcp support for ramdisk element
* Handle non-script grub2-install
* Use readlink to get script path
* Detail 'other' directories in the README
0.1.24
------
* Lock around source repositories setup
* Really handle Ubuntu mirror cache skew,
* Echo output when pkg-map fails
* Optimizing directory creation
* Revert "Don't match editor backup files in env..
* Allow overwriting old images
* Correction: if then statement code style
* Last ditch effort to correct a wrong shasum
* Avoid to install a blank list of packages
* Add global exclusions to dib-lint
* Don't match editor backup files in environment
* Remove fixfiles from rpm-distro finalize
0.1.23
------
* Rename rhel element yum blacklist
* Set LC\_ALL=C into dib-run-parts env
* update opensuse element
* Use $DISTRO\_NAME instead of local lsb\_release
* Add RHEL7 to Red Hat family in pkg-map
* Use common element select-boot-kernel-initrd
* Always bind-mount pypi mirror if dir exists
* Add select-boot-kernel-initrd element
0.1.22
------
* Ignore manifest outputs more carefully
* VM element: Enable serial console on Debian
* Disk-image-create should allow sending compat flags to qemu-img
* Ensure cache directory exists before use
* update zypper element
0.1.21
------
* Drop ending slash from DIB\_CLOUD\_IMAGES
* Update base element to make use of pkg-map
* opensuse: support pkg-map in bin/install-packages
* dpkg: support pkg-map in bin/install-packages
* Element to remove unwanted kernel/initrd
* introduce $SYSTEMD\_SYSTEM\_UNIT\_DIR
* Update README regarding Debian and OpenSUSE support
* Do not use DatasourceNone for precise cloud-init
* Explicitly name element enable-serial-console
* avoid failure if /lib/firmware doesn't exist
* Tidy base image by removing /var/log files
* debian: fix network on Wheezy
0.1.20
------
* Refactor code to select boot kernel
* fail at startup with no operating-system element
* Add test to ensure we don't duplicate filenames
* Name deploy-ironic and deploy-baremetal files uniq
* Name 10-rhel-cloud-image uniquely
* Name 01-install-bin uniquely
* Delete redhat-common 00-usr-local-bin-secure-path
* Name 99-setup-first-boot uniquely
* Yum: support pkg-map in bin/install-packages
* Add tar as an output type
* Correct source-repository comments
* dpkg: local cache for .deb files
* map-services: add openvswitch
* Ensure dib-run-parts profiling works with py3 and py2
* Rename old image file instead of rewrite it
* Add missing dollar
* Replacing deploy to deploy-baremetal in README.md
* Reinstate Trusty as default for Ubuntu
* Only use Ec2 cloud-init data source for Ubuntu
* Remove uneeded code from pkg-map
* Correct the wrong rename in rhel element
* Add manifests to .gitignore
* Check return code of element-info
* Add new cloud-init-datasources element
0.1.19
------
* Set DISTRO\_NAME in OS environment.d
0.1.18
------
* Add pkg-map element
* Factor out error behavior in dib-lint
* Fix package removal
* Create an element to allow using a dpkg manifest
* Check for set -o pipefail
* Set -o pipefail new scripts
* Add support for source-repos gerrit refs
0.1.17
------
* Stop using bash arrays for whitelisting in yum
* Tidy up SuSE kernel selection
* Parameterise PXE kernel and initrd selection
* Debian: Support additional debootstrap arguments
* \`set -u\` doesn't permit bash arrays to test -n
* Ensure we can read the kernel out
* Export unbound variable DIB\_RHSM\_USER
* indent: search for !=4 spaces indentation
* 4 spaces indent
* Updated from global requirements
* Adding -x to set parameters for more output
0.1.16
------
* Ensure scripts are set -u
* set -u and -o pipefail everywhere
* Fedora: Add support for configuring Yum mirrors
* dib-lint: check for tab indent in files
* dib-lint: ensure file finish with a new line
* add some missing \n at end of file
* Add map-services for debian distros
* Make sure all scripts are set -e
* Allow excluding tests from certain files
* Eliminate 'tr' in favor of inline bash
* Support declarative package installs/uninstalls
* Build raw image in separate tmpfs
* debian: properly deal with Debian stable/unstable
0.1.15
------
* Permit cache-url to work with fifos
* debian: add systemd support
* debian: support upstart on Wheezy
* Debian element should activate eth0
* Respect inmutable resolv.conf in the image
* set -e all the things
* Explicitly use bash
* Remove All Rights Reserved
0.1.14
------
* Add package uninstall support
* Revert default Ubuntu release back to Saucy
* Add a mapping for kernel headers
* Map openjdk-7-jre-headless to RHEL+SUSE
* Sort rhel/bin/map-packages
* Add sysv support to elements/dhcp-all-interfaces
* Place /usr/lib64/ccache in PATH
* Small fixes for dhcp-all-interfaces
* cleaning up 01-copy-manifests-dir
* Remove the temporary deploy element after rename
* Use provides to note an element provides deploy
* Remove dependency on /etc/lsb-release
* indent: replace tab by 4 spaces
* Make "trusty" (Ubuntu 14.04) the default release
* Add switch to turn on caching for debian element
* Remove cloudy interfaces in dhcp-all-interfaces
* debian: simplify the way debian element is called
0.1.13
------
* Fix set -eu and pipefail failures
* Move instead of copy the temporary git manifest
* Add mapping for mariadb rdo package
* map-services: add apache2 in the list
* Remove map-services from fedora element
* Use provides to note an element provides an OS
* Standardise manifest creation and retrieval
* Remove call to depmod in busybox
* apt-conf: uninitialised variables fix
0.1.12
------
* Iterate over provided elements first
* Add ability to add extra apt keys
* doc: indentation rules for element
* Document a little the concerns for operators
* debian: use sudo to create file in the chroot
* Disable splashimage for legacy grub
* Change refspec used to fetch all branches and tags
* fix grub2 installation on Debian Wheezy
* Fix Grub configurations for Fedora images built on a UEFI host
0.1.11
------
* Fix dhcp-all-interfaces upstart job
* Fix dhcp-all-interfaces on Ubuntu/Debian
* Fix resource exhaustion with upstart
* Write a dpkg manifest to list installed packages
* Fix "(None)" seed hostname on Debian
* dhcp-all-interfaces: correct ifquery return stmt
0.1.10
------
* Make stable-interface-names its own element
* Uses policy-rc.d to prevent dpkg starting daemons
* Enforce alphabetical ordering of element-deps
* Alphabetize all element-deps
* Add dib-lint script
* Adds package mapping for mariadb packages
* Adding pypi-mirror dependencies for redhat
* Revert "Only create a tmpfs big enough for DIB\_MIN\_TMPFS"
* debian: install cloud-init on Wheezy
* Remove an excess cp of disk images
* Adds "element-provides" support to element dependencies
* Add console kernel parameters to extlinux configuration
* Permit use of wheel mirrors in pypi element
* baremetal: correct the path of ifcfg-eth0
* Adds libmariadb-dev package mapping
* rename udev.rules to dhcp-all-interfaces-udev
* serial-console: Use udev rules to startup getty
* Set +x on executable files
0.1.9
-----
* DHCP: make udev rules want dhcp-interface@.service
* Add RHEL 7 image element
* Use redhat-common in fedora element
* Add redhat-common element
* Correct README.md markdown errors
* Support adding DHCP interfaces one at a time
* Move install type enablement into base element
* Remove hardcoded /tftpboot/ from token's tftp path
* RHEL Package maps for build-essential, python-dev and libz-dev
* Extract move cache logic to a function
* Always export IMAGE\_NAME
* baremetal element: Enable stable interface names
* Fixup all occurrences of REPONAME for replacing '-'
* Create a git manifest from source-repositories
* Add apache2 mod\_wsgi pkg map for suse
* Updated from global requirements
* 98-source-repositories tries to return from script
* Add libaio1 to libaio pkg map for fedora
* Only create a tmpfs big enough for DIB\_MIN\_TMPFS
* Additional swift storage service mappings
* Update openSUSE package mapping for libffi-dev
* Better apt-sources docs
* Add nfs-common package mapping
* Replace more then just "-" in REPONAME
* Bash eval the lines in source-repository scripts
* Fix spelling error in "vm" element README.md
* Add $EXTRA\_ARGS back to yum call
* Update the image name for RHEL Guest Image
* Alphabetize openSUSE services dictionary
* Alphabetize openSUSE packages dictionary
* Alphabetize Fedora services dictionary
* Alphabetize Fedora packages dictionary
* Enable extlinux support for (non-Ubuntu) Debian platforms
* Replace use of show-ref with name-rev
0.1.8
-----
* Fix syntax error in GRUB\_OPTS env var handling
* Update README formatting and content
* Improve local-config proxy handling
* Enable custom apt.conf in apt-conf element
* Add rsync to the package list used by debootstrap
* Enable simple modification of git repo location
* Add NFS package mapping
* Improve usability of the source-repositories cache
* Fix unbound variable in debian element
0.1.7
-----
* Replace security.ubuntu.com when setting mirror
* Generalize install-packages for yum
* Remove accidental merge marker
* Add libvirt-bin -> libvirtd to map-services
* Make max-online-resize an option
* Correct DIB long option parsing
* Add 00-fedora-fixup-vim
* Update pypi element to suggest pypi-mirror
* Permit using arbitrary PyPI urls
* Pep8/Pyflakes fixing
* Shift debian element to DIB\_DISTRIBUTION\_MIRROR
* Revert "Add Fedora DHCP interfaces via udev rules."
* Revert "Support adding DHCP interfaces one at a time. "
* Teach cache-url to handle file:// URIs
0.1.6
-----
* Remove tox locale overrides
* Add Fedora DHCP interfaces via udev rules
* Support adding DHCP interfaces one at a time
* Rename Openstack to OpenStack
* Don't hardcode environment.d
* Add more package name mappings for openSUSE
* Add lsof package to all Fedora images
* ifquery doesn't exist on Fedora
* Remove unneeded service mapping for mysql on openSUSE
* Fix misspellings in diskimage-builder
* Fix kernel extraction on openSUSE
* Adjust neutron package install for Fedora
* Make the MIRROR\_TARGET directory if it didn't exist
* Add tgt service mapping for Fedora
* Update openSUSE package mappings for OpenStack
* Updated from global requirements
* Update map-services for Fedora
* Add Fedora packages mappings for snmpd
* Add mysql mapping for Fedora
* Add package map for stunnel4
* Add ability to use local cloud image
* Add a service mapping for openSUSE
* Add bash as a dependency to the deploy ramdisk
* Include /lib64 into the deploy ramdisk on openSUSE
* Fix tftp mapping on openSUSE
* Use /usr/bin/env, not /bin/env
0.1.5
-----
* Rename generate-interfaces-file.sh..
* Only configure DHCP for real interfaces
* Add map-services
* Skip relabel unless SELinux is enforcing
* Mount root filesystem readonly during boot
* Fix kernel/initrd extraction for SUSE based distros
* Fix ramdisk element for openSUSE
* Workaround broken udev update on openSUSE
* Make copy\_required\_libs() more robust
* Add Copyright and License header to debian element
* Setup ccache symlinks on openSUSE
* Add support for Red Hat Satellite
* Support list of Red Hat channels and repos
* Add support Red Hat Network (RHN)
* Update default RHEL guest image
* Create a new baremetal element
* Fix mysql package mappings for opensuse
* fedora/RHEL: use env from /usr/bin
* Allow use of mirrors when building Ubuntu images
* Update to Fedora 20
* Convert -dev to -devel in fedora/map-packages
* Fix the curl command in the ironic-deploy element
* Move Babel and argparse from test-requirements.txt
* Symlink correct element install type
* dib-run-parts should dereference symlinks
* Add debian-upstart for experimenting with upstart
* Allow adding packages to debootstrap
* Add support for Debian
* Wait for tgtd socket to be available
0.1.4
-----
* Add new modprobe-blacklist element
* Install traceroute on Fedora
* Retry link check up to 10 times
* Implement serial-console for systemd
* Removing the config-applier element
* Add package support to source-repositories
* Increase padding to allow for smaller images
* Remove old versions of grub2 from the yum cache
* Implement dhcp-all-interfaces for systemd
* Install tcpdump on Fedora
* Mark install-packages +x
* Make sure a loop device exists before kpartx is called
* Fixed command dib-init-system not found error
* Refactor unmount\_image with unmount\_dir
* Fixed device or resource busy issue in EXIT trap
* Add a package mapping for libvirt-dev
0.1.3
-----
* Log unsupported source repository types
* Improve source-repositories git caching
* Add element to modify /etc/apt/sources.list in dib
* Fix package-mappings for openSUSE
* Update login.defs on openSUSE
* Make sure sbin paths are in $PATH
0.1.2
-----
* Add -U to pip install command in tox.ini
* Add zypper element
* Increase the size heuristic for images
* opensuse: Update README.md
* Fix $TARGET\_ROOT usage in yum element
* local-config: Configure proxy for zypper repos
* Updates tox.ini to use new features
* Quieten disk-image-get-kernel
0.1.1
-----
* Add support for building openSUSE images
* Add examples for ramdisk-image-create
* Fix no busybox symlinks issue on rhel
* Log the repository fetches in source-repositories
* Default name for ramdisks to image
* Add deploy ramdisk element for Ironic
0.1.0
-----
* Modify /etc/selinux/config if it exists
* Drop default distribution root element support
* Remove dot after TMP\_HOOKS\_PATH
* Store DIB\_\* only env variables
* Remove the dot typo in extra-data script
* Updates .gitignore
* Switch Ubuntu element to installing saucy
* Enhance dib-run-parts usage message
* Add mapping for tgt to RHEL element
* Update openssl for Fedora
* Add option --image-size
* Fix typo in source-repositories README
0.0.11
------
* Detect udevd version and behave accordingly
* Fix issue with Ubuntu grub pre-install step for ARM
* Check existence of rhel rpm key
* Fix troubleshooting override
* Support building wheels (PEP-427)
* Document ramdisk troubleshooting
* Add troubleshooting override to deploy ramdisk
* Add mapping for gearmand
* Make pxe\_mac accurate in two common cases
* /bin/bash all the things
* Split network bringup out of base ramdisk init
* Don't block the upstart daemon if it doesn't exist
* Make sorting of ramdisk init elements explicit
* Provide a way of determining init system used
* Usage message enhancement
0.0.10
------
* Add mapping for libffi-dev
* Allow heat-admin to sudo without tty
* Python code refactorings
* Add \*.egg to .gitignore
* Remove BUSYBOX variable from ramdisk-defaults
* Replace assertEquals with assertEqual
* Updated from global requirements
0.0.9
-----
* Check existence of directory 'lost+found'
* Remove mapping of atftpd to tftpd-server
* Remove dependency on dracut-network
* Add redhat mapping from tftpd-hpa to tftp-server
0.0.8
-----
* Add apache and mod\_wsgi to Fedora's package map
* Allow for bad Fedora image mirrors
* exit 44 if http 404 is returned
* Ignore basename failures
* Dracut regenerate initrd w/ the right kernel
* Fix disk-image-get-kernel for redhat
* Remove framebuffer video drivers from ramdisks
* Remove old-kernels for fedora
0.0.7
-----
* Conditionally add dhcp-all-interfaces
0.0.6
-----
* Remove \r chars from dhcp-all-interfaces
* Make dhcp-all-interfaces block all interfaces
* Fix ifquery call in dhcp-all-interfaces
* Allow for redirects to ftp servers
* Updated from global requirements
* Specify distro release in fedora image name
* Move /tmp/ccache setup to base element
* Use --numeric-owner when extracting base image
* Mount /dev/pts in chroot
* Using python to run testr instead
* Make RHEL subscription optional
0.0.5
-----
* Increase journal size to 64 M for ext4 file system
* Fix mellanox module loading
* Ignore empty files returned by curl
* Generate interfaces file before cloud-init runs
* Updated from global requirements
* Fix typo in dhcp-all-interfaces
* Set locale for the profiling printf command
* Update from requirements
0.0.4
-----
* Deprecate first-boot.d
* Add mapping for atftpd in fedora/rhel
* Make RHEL subscriptions optional
* Add RHEL mapping for openssh-client
* Add RHEL mapping for augeas-tools
* Add RHEL mapping for default-jre
* Translations license statement correction
0.0.3
-----
* Do not prompt on removal of apt-xapian-index from ubuntu cloud images
* Add DIB\_IMAGE\_CACHE
0.0.2
-----
* Remove apt-xapian-index from ubuntu cloud images
* Use lazy umount to avoid race problems with dev
* Remove github references
* Move textmode forcer to vm element
* Fix grub/linux text mode override
* Add deploy-kexec element
* Consolidate the checks for /etc/grub
* Check cached file size when downloading an url
* Fedora 19 has no grub2 conf file
* Install fedora grub from cached rpm during finalise
* Remove -r option from kpartx for successful build
* Fixes files ordering when choosing newest image
* Add package mapping for default-jre
* Set raw image size to be multiple of 64k
0.0.1
-----
* Delete -new image once copied
* Add --list support to dib-run-parts
* On Fedora, use Linux Foundation bzr lsb\_release
* Add support for file to source-repositories
* Install patch for dracut patching
* Add rhel installation element
* Add option --min-tmpfs <size> to disk-image-create
* Add package mappings for MySQL-MariaDB
* Combine compress and save image into one function
* Extlinux fallback
* Rename 51-grub to 51-bootloader
* Add a pip-cache element
* Fix URL to os-apply-config
* qpid package mappings
* Call sync before unmounting keeps the mount from being busy
* Remove a device mapping, then let the loop device get removed
* Extracting common functionality for rpm based distros
* Use kpartx if partition device doesn't exist
* Set file permission to be executable
* Fixed a network setup issue for F19
* Update stackforge references to openstack
* Package dib-run-parts
* Add yum element
* dkms is unavailable on RHEL and derivatives
* Fix pypi element README.md errors
* Allow using a pypi mirror to install via pip
* Make $HOME in the chroot be reasonable
* Cleanup mount points automatically
* Change the rootfs label in F18 and F19
* Remove explicit sudoers requirement
* Document the dangers of co-existing elements
* Blacklist H803
* Capture the repositories from source-repositories
* Improve caching documentation
* Package with pbr
* Add a new break on error
* Ensure $TMP\_BUILD\_DIR is actually created
* Modify relative paths of lib, elements for packaging
* Add binaries for setuptools
* Make Ubuntu 13.04 (raring) the default release
* Ignore emacs autosave files in source-repositories
* Provide hint for what package contains qemu-img
* Fix hacking errors
* Add downloadonly flag to fedora
* Fixed up test-requirements
* Add needed symlink for Fedora deployment ramdisk
* Install which on Fedora
* Only remove $TMP\_BUILD\_DIR on cleanup
* Enable running disk-image-create on SUSE Linux
* Update TripleO incubator URL reference
* Support repo names with multiple '-'s
* Set work-dir to cached repository
* Move the getsources hook earlier
* Cache repository-sources data
* Update the Fedora element to honour --offline
* Enable --offline support for Ubuntu root images
* Fix the DIB\_OFFLINE setting to actually work
* Document an interface for offline operation
* Allow 'sudo kpartx -d' used in EACTION for Fedora
* Move end user docs higher up in README.md
* Remove excess whitespace in README.md
* Fedora 19 GRUB
* Fix for mounted readonly filesystem for Fedora 19
* EFI hosts
* F19 GRUB configuration file
* Add package mappings for augeas-tools and openssh-client
* Build ramdisks in an image chroot
* Make cloud-init-nocloud work cross-platform
* Update Fedora cloud image to its latest version
* Adding docs for the source-repositories element
* Use ccache to cache all compiles between builds
* Add environment.d hook to setup environment
* Curl to redo the request (Found 302)
* Fix loop0p2 does not exist on F19
* Add arping to the fedora map-packages
* Fix 50-firmware.rules no such file on Fedora 19
* Add mysql-devel to fedora map-packages
* Fix cache-url to use single '=' in test expression
* Fix cloud-init routing issue on Fedora
* Move functions to common-functions for reuse
* Factor out element processing
* Consolidate more ramdisk and disk-image code
* Fix pyOpenSSL on Fedora
* Improve debugging of missing elements
* Fix unit tests to have accurate return code
* Use the source-repository interface
* Install git with source-repositories element
* Use full path to dib-run-parts during firstboot
* Enable Flake8 F\*\*\* checks
* Switch from pep8 to flake8/hacking
* Re-use cache\_url() in fedora element
* Improve first time download of ubuntu images
* Use dib-run-parts on dib-first-boot
* Reduce duplication between ramdisk and disk image codepaths
* Add mechanism to send error messages to helper
* Make bash troubleshooting configurable
* Make the finalise\_base function less Ubuntu-ish
* Adding element to get source for elements
* deploy element: Call find\_disk in loop w/ timeout
* Add disable-selinux element
* dib-run-parts was failing with empty targets
* Add /usr/local/bin to the secure\_path variable
* Fix cloud-init-nocloud to actually work
* Stop apt-get installing qemu-img
* Change the rootfs label in fedora's /etc/fstab
* Add zlib-devel and qemu-img to fedora map-packages
* Document some dependencies
* Add RedHat support for disk-image-get-kernel
* Add dracut-network element
* Add fedora support for ramdisk-image-create
* Remove obsolete Fedora rc-local install.d hook
* Switch from losetup+partprobe to kpartx for Fedora image creation
* Move package install of dkms to install.d
* Fix fedora element to work with qcow2 images
* Install dkms before using it
* Build all dkms modules near the end of the image build
* Set correct mode for .ssh/authorized\_keys files
* Update sudoers rules for 1PB resizing
* Increase the size heuristic for images
* The ext4 resize fix was faulty - fix it
* Basic wall clock profiling per element script
* Move the ensure\_nbd function call
* Ensure that the ext4 fs can be rebuilt up to 1PB in size
* Force text mode console in base element
* Refactor the first boot routine
* Run fixfiles restore in chroot instead of firstboot
* Trigger SELinux autorelabel on first boot
* An element for putting SELinux in permissive mode
* Fix for running /etc/rc.local on Fedora
* Honor $DIB\_IMAGE\_SIZE
* install redhat-lsb before pre-install.d baseline-tools
* install redhat-lsb-core instead of redhat-lsb
* Enable serial console for fedora
* Fix fedora fstab so / is mounted rw properly
* Add an element to configure a serial console
* Retry losetup -d for up to 10 seconds
* Force the inclusion of /usr/local/bin in PATH
* Tweak the moved cleanup\_dirs to match the original
* Remove img-functions from ramdisk-image-create
* Ignore errors when ldd'ing static binaries
* Extend mellanox support to disk images
* Reinstate support for real hardware with Ubuntu
* Remove tripleo PPA from base element
* Only use tmpfs if build machine has 4GB+ RAM
* Use conditional GET to fetch latest ubuntu image
* Revert "Improve Fedora build host support."
* Fix architecture filter
* Unbreak grub for precise
* Fix GRUB command quote escape for VM element
* Fix GRUB for for precise
* Fix missing export of $ARCH
* Improve Fedora build host support
* Use a different approach to solving the ramdisk-image-create failure
* Source img-functions into common-functions
* Build images using loopdev instead of qemu-nbd
* Add few other packages to the map list for fedora
* Fix up the conflict between audit and glibc packages
* Improve Fedora build host support: architectures
* Fix Ubuntu image fetching
* Fix a small typo in fake init scripts
* Adds support for post-install scripts
* Grab the next available /dev/nbdX
* Allow build dir to be changed from /tmp
* Migrate cloud image URL/Release options to DIB\_
* Introduce the DIB\_ namespace for build-time config
* Fedora element allows root to sudo without TTY
* Generate ssh hostkeys on first-boot
* Add armhf support
* Always include the in-tree elements directory
* Delete elements moved to tripleo-image-elements
* Update README.md for build-time state capture
* Fix mysql migration script to handle errors
* Remove strict sql\_mode setting which breaks apps
* Do not require arguments for os-svc-daemon
* Store build-time settings
* Disable tunneling in quantum-ovs
* Migrate data into MySQL from bootstrap
* Run os-config-applier using os-refresh-config
* Bring os-svc-install element docs up-to-date
* Enable use\_namespaces setting for quantum agents
* Clearly mark unaudited config templates as such
* Replace glance-api+glance-reg elements with glance:
* Streamline upstart scripts in os-svc-daemon
* Add a nova-baremetal element
* Add a quantum element
* Run all openstack services in virtualenvs:
* Add element to run DHCP on all network interfaces
* Create users in mysql server based on metadata
* Set mysql server\_id based on instance-id
* Refactor mysql element to do less in first-boot.d
* Adding cfn-credentials file to heat-cfntools
* remove unnecessary '/usr/local/bin' from install.d
* Install os-config-applier from stackforge repo
* Switch to using the incubator-bootstrap tree
* Fix os-refresh-config failing without scripts
* Remove duplicate file extensions
* Correctly translate all branches/tags/shas:
* Update keystone middleware in cinder api-paste:
* Fix script that installs os-refresh-config scripts
* local-config: Configure proxy for apt and/or yum
* Fix issues causing Fedora images to fail
* Seperate install of services and start scripts:
* Update keystone element to use os-refresh-config
* Make 99-install-config-templates executable:
* Install os-refresh-config scripts automatically
* local-config element adds authorized\_key for root:
* Integrate os-refresh-config with heat-cfntools
* Allow elements to include skeleton config
* Add a cinder element
* Namespace SHA256SUMS file to distro/release/arch
* Fix heat-cfntools to work on Fedora
* Verify Ubuntu Cloud Images using SHA256SUMS
* Fix elements\_path default path
* Use multiple locations for elements dir
* Specify os-refresh-config path in README
* Don't use sudo in base
* Add an openstack all-openstack-db element:
* Devstack element pulls from master
* Fix ramdisk-image-create
* Run alternatives pip -> pip-python
* Install heat-cfntools from pypi
* Support multiple outputs disk formats
* Prevent silent failure of element-info:
* Fix the sudo rules for unpacking fedora raw images
* first-boot.d scripts log to a file:
* Fedora needs to depend on dib-run-parts too
* New element that uses a fedora cloud image as the base
* Add dib-run-parts install command to sudoers.d
* Use dib-run-parts for running scripts in target
* Make populate\_libs() more generic
* Work in progress run-parts replacement
* Move the dpkg specific stuff to a dpkg element rather than being hardcoded
* Change run-parts usage to be compatible with Fedora
* Give stack user passwordless sudo:
* Consolidate common OS installation into a script:
* Bad code landed, causing ubuntu to be always landed
* cloud-init-nocloud element for non-cloud image
* Add cfn-hup configuration for os-refresh-config
* Fix broken pep8 in setup.py
* Add element to call os-refresh-config
* Add default element selection
* Correct misuse of return in ramdisk-image-create
* Fix unnecessarily creating a temporary directory
* ramdisk-image-create shows a failed binary dependency
* The default ARCH was broken due to $ARCH not being exported
* Add missing python-pip dependency in heat-jeos
* Work around cfn API bug in HEAT w/ specific boto
* Move initial root contents into a hook
* Make it possible for openstack-CI to run tests
* Export the ELEMENTS\_DIR so that dependencies work
* Add os-config-applier element
* Split stack user creation out of devstack element
* Improve error message for missing element
* Create install-packages as a binary
* Add option to clear environment
* Switch locale to C
* Add sudoers rule to format and mount anykind of partitions in disks
* Add openstack-all element
* Add element to install config-applier
* Enable 'ec2-user' in HEAT for quantal images
* Add a simple implementation of element dependency
* Disable Apt Recommends
* add default gateway to deploy init script
* Allow manual installation of packages
* Include English locale in base
* Install nova-api from github
* Add Icinga elements
* Add missing whitespace to local-config
* Replace demo references with incubator
* Add an element to install the HEAT JEOS tools
* Install quantum-api from github
* Clean up the MySQL element to make it suitable for generic use
* Fix disk-image-create's getopt error handling:
* Tidy up base element:
* Add guidelines for composing elements
* Copy both http and https proxy to local-config
* Add a test framework for testing elements
* Ignore .pyc files
* Add a .testr.conf configuration and ignore .testrepository
* Add the ability to break into a shell during builds
* Add glance-api element
* Move everything 'common' into base, making it avoidable for tests
* Make it possible to not recompress the qcow2 image at the end
* Added true to avoid exit on error
* updating devstack element to reference incubator
* Add keystone element
* Add copyright to lib/ramdisk-\*
* Generate apt.conf files with correct content, fixes bug 1088805
* Further fleshing out of hwdiscovery element
* Move grub installation to the vm element
* Rename flavour to element
* Configure git proxy settings and prefer http(s) protocol
* Use system resolv.conf file when available
* Remove udev stuff from the source tree
* Add .gitreview file
* Jenkins image fixed
* Reinstate /mnt redirection of jenkins - HPCS cloud images have a very restricted /
* Untrap EXIT before run-parts
* Update hwdiscovery flavour to have lots more structure that we can build on
* fix crappy header
* Updated jenkins flavour
* Make a primitive jenkins image
* be smarter about mounting qcow images
* Use base in all examples
* added br\* filter for interfaces
* adding BASIC hardware discovery
* adding dhclient support
* adding dhclient
* move misplaced salt-master install script
* mount\_qcow\_image should mount p1
* removes AMQP install and adds hwinfo
* added lsmod to default busybox links
* add salt-master flavor
* remove force-xtrace in disk-image-get-kernel
* add some tooling that baremetal-devstack wants
* move tgtd & tgtadm to bin-deps of deploy and remove from lib/ramdisk-functions
* Adding python-AMQPLib install to HWdiscovery
* Fix copyrights for HP work
* Add a flavour for doing generic this-node-is-in-a-cloud stuff, like cloud-init tweaks
* adding mysql flavor (untested)
* Document more about the layers
* Some cleanup on nova-vm flavour
* Add support for flavours to ship udev rules.d files and port over the mellanox variant to use this
* Fix mysql passwords
* Default to 2G in size - 1G is just too small
* Fix handling of parameters that are not set by any flavour for eval\_run\_d
* Make it possible to set a size from within a flavour, and use that for devstack
* Rename baremetal to deploy
* Remove some whitespace
* Update ramdisk building to support init hooks for flavours
* Update docs for ramdisk building
* Add readmes to the ramdisk flavours
* Documented binary-deps feature
* Port old baremetal-mkinitrd.sh to the new image creation standards
* Land an extension of baremetal-mkinitrd.sh which can also build flavours, with a start at making hwdiscovery and hwburning flavours
* Bring across disk image code
* Ignore temporary files
* Support KVM instances - allow /dev/vda to be detected as a disk
* Turn off udev logging, it makes debugging too hard. Better would be to log to a file or something
* change working directory name template
* Rename to baremetal-mkinitrd.sh
* initial commit
|