aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: 6eb2e61295092e6033113b3d1561e18417f0cc2a (plain)
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
2004-03-22 06:50  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: Mandrake => Mandrakelinux

2004-03-21 16:56  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.42.1-1mdk

2004-03-21 16:45  Frederic Lepied <flepied@mandrakesoft.com>

	* src/msec_find/find.c: workaround bug #9121 by not passing
	  FTW_CHDIR to ntfw.

2004-02-27 12:44  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.42-1mdk

2004-02-27 12:41  Frederic Lepied <flepied@mandrakesoft.com>

	* share/README: document perm file syntax

2004-02-27 12:35  Frederic Lepied <flepied@mandrakesoft.com>

	* share/Perms.py: - allow to specify only group or user in perm
	  files (Bill Shirley) - allow the force keyword in perm files to
	  be able to lower security (Bill Shirley)

2004-02-27 12:08  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/: perm.0, perm.1, perm.2, perm.3, perm.4, perm.5: mailman
	  log dir fix (Guillaume Rousse)

2004-02-14 22:13  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.41.1-1mdk

2004-02-14 20:24  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/diff_check.sh: allow % in file names [bug #6144] (Sven
	  Hoexter)

2004-02-14 20:19  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: fixed system-auth growing line forever (bug
	  #7853) (Michael Scherer)

2004-02-12 17:13  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: make it lib64 aware wrt pam files rewriting

2004-02-12 17:12  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.41-1mdk

2004-02-12 17:08  Frederic Lepied <flepied@mandrakesoft.com>

	* man/C/msec.8: add pointers to perm files and draksec/drakperm

2004-01-29 14:00  Frederic Lepied <flepied@mandrakesoft.com>

	* share/README: fixed location of perm files

2004-01-06 11:56  Pixel <pixel@mandrakesoft.com>

	* msec.csh, msec.spec: more csh-ish msec.csh

2003-11-28 12:55  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.csh: only set SECURE_LEVEL whenever it already exists
	  locally

2003-11-18 10:13  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/: perm.0, perm.1, perm.2, perm.3, perm.4, perm.5: fixed typo
	  rpp => rpm

2003-11-18 09:46  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: allow_xserver_to_listen: corrected startx
	  modifications (Gavin Porter)

2003-11-18 09:45  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/security.sh: removed xfs from remote filesystems and
	  added hfs in foreign filesystems (Stefaan Simoens)

2003-10-30 16:00  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/: perm.0, perm.1, perm.2, perm.3, perm.4, perm.5: handle
	  /var/lib/rpm/Packages

2003-10-15 22:38  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* AUTHORS: list tv too

2003-10-15 22:36  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* AUTHORS, README, TODO: fix #6145 (list current maintainer instead
	  of old one)

2003-10-15 22:36  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* Makefile: enable to build srpm only

2003-10-09 07:59  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: document same_level

2003-10-08 23:15  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec.py: use local_config

2003-10-08 23:15  Frederic Lepied <flepied@mandrakesoft.com>

	* share/shadow.py: Added local_config to say that the calls are now
	  coming from the config file.	Call force_val in indirect to store
	  that the arguments of the function need to be used even if the
	  security is lowered.

2003-10-08 23:10  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: Rework same_level to be able to put the
	  priority on the config file.	This is realized by inspecting the
	  stack trace and using a global associative array.

2003-10-08 21:33  Frederic Lepied <flepied@mandrakesoft.com>

	* man/: fr/msec.8, cs/msec.8, et/msec.8, ru/msec.8: Linux-Mandrake
	  => Mandrake Linux

2003-09-08 15:09  Pablo Saratxaga <pablo@mandrakesoft.com>

	* man/cs/msec.8: updated Czech man page

2003-09-03 17:45  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.40-1mdk

2003-09-03 17:39  Frederic Lepied <flepied@mandrakesoft.com>

	* share/shadow.py: make an exception for set_shell_history_size
	  that accept -1 as a normal argument

2003-09-03 17:36  Frederic Lepied <flepied@mandrakesoft.com>

	* share/Perms.py: correct broken code in fix_perms which add +x for
	  all files when it finds a directory in a glob.

2003-08-22 14:54  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.39-1mdk

2003-08-22 14:53  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.40-1mdk

2003-08-22 11:56  Frederic Lepied <flepied@mandrakesoft.com>

	* share/Perms.py: better support for symlinks

2003-08-22 11:53  Frederic Lepied <flepied@mandrakesoft.com>

	* share/shadow.py: don't use apply anymore (Olivier Blin)

2003-08-22 11:50  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: better doc for no_password_aging_for and
	  set_security_conf allow to pass a number in set_umask

2003-08-22 10:52  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: be carefull to use 1 or 0 instead of True and
	  False in set_zero_one_variable

2003-07-24 19:25  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* msec.spec: resync with cooker

2003-07-24 19:22  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* msec.spec: fix upgrade (spotted by new draksec localization
	  scheme)

2003-05-08 11:50  Pablo Saratxaga <pablo@mandrakesoft.com>

	* man/: cs/init.sh.8, et/init.sh.8, eu/init.sh.8, fr/init.sh.8,
	  fr/msec.8, ru/init.sh.8: Added Finnish and Ukrainian man pages;
	  removed "init.sh" man page from translations

2003-03-07 15:27  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.38-3mdk

2003-03-07 15:25  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: corrected inverted descriptions

2003-02-17 18:36  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: put description on one line not to modify
	  draksec_help.py

2003-02-17 15:37  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: reworded CHECK_PASSWD description

2003-02-03 16:22  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* share/draksec_help.py: help
	  draksec::set_default_tip->formatAlaTeX() to have nicer tooltips

2003-02-03 15:48  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* share/draksec_help.py: enforce gi policy for modules (it's the
	  standalone tools job to provide a good @INC)

2003-02-03 09:17  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* share/draksec_help.py: let this statement be more precise

2003-02-03 09:15  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* msec.spec: move security::help from msec to drakxtools so that it
	  get translated

2003-02-03 09:15  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* share/draksec_help.py: - produce a perl module that pass strict
	  mode checking - explain perl from where to find translation
	  functions - "typo fix" to please emacs::php-mode - cron checking
	  help (aka set_security_conf() help) was not managed the same
	  way other msec stuff, so let introduce some regexps (python fsck,
	  perl	 rulez!)

2003-02-03 09:14  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* share/libmsec.py: fix mseclib man page and draksec help (parsers
	  drop first two bytes... :-()

2003-01-31 13:10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* man/et/: init.sh.8, msec.8: Added Estonian files

2003-01-20 14:06  Frederic Lepied <flepied@mandrakesoft.com>

	* Makefile: use rpm to find version and release

2003-01-20 12:50  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* msec.spec: - bump version - install draksec help

2003-01-20 12:50  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* share/Makefile: - add the drakesec help target - sanitize make
	  rules through std macros to ease creating new rules

2003-01-20 12:36  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* share/draksec_help.py: help generator for draksec gui

2002-12-13 11:14  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: removed 9.0 stuff

2002-12-13 09:55  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.32.1-1mdk

2002-12-13 09:55  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec.py: no password aging in level 4

2002-12-13 09:54  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: pam passwd file is in /etc/pam.d/passwd

2002-11-20 20:57  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.37-1mdk

2002-11-20 20:57  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: password_aging: chage is l10n now so use
	  LC_ALL=C before calling it.

2002-11-07 11:29  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* msec.spec: requires s/(sh-|text|file)utils/coreutils/

2002-09-17 16:12  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: X-\*-Core => X-:\*-Core

2002-09-17 16:12  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: allow_reboot: X-\*-Core => X-:\*-Core

2002-09-17 15:38  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: better wording

2002-09-17 15:08  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.36-1mdk

2002-09-17 15:08  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: - allow_user_list handles Selected when not
	  changing security level.  - allow_reboot handles Root when not
	  changing security level.

2002-09-09 20:51  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/server.4: removed double network entry

2002-09-06 15:37  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.34.5-2mdk

2002-09-06 14:51  Frederic Lepied <flepied@mandrakesoft.com>

	* src/msec_find/find.c: SUID_GROUP_TODAY => SGID_TODAY

2002-09-05 14:14  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.34.5-1mdk

2002-09-05 14:12  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: allow_user_list: lookup ShowUsers in the
	  X-*-Greeter section of kdmrc.

2002-09-05 10:50  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.34.4-2mdk

2002-09-05 10:50  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: removed debug output

2002-09-03 08:57  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec, cron-sh/diff_check.sh, cron-sh/security.sh,
	  share/README, share/libmsec.py, share/msec.py: CHECK_SUID_GROUP
	  => CHECK_SGID

2002-08-30 14:22  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.34.3-1mdk

2002-08-30 14:20  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec, cron-sh/diff_check.sh, cron-sh/security.sh,
	  cron-sh/security_check.sh, doc/msec.lyx, doc/security.txt,
	  init-sh/custom.sh, init-sh/level1.sh, share/README,
	  share/libmsec.py, share/msec.py, src/msec_find/find.c: writeable
	  => writable

2002-08-30 14:18  Frederic Lepied <flepied@mandrakesoft.com>

	* share/Makefile: clean generated files

2002-08-29 20:53  Frederic Lepied <flepied@mandrakesoft.com>

	* share/shadow.py: call function with no argument in
	  commit_changes.

2002-08-27 22:26  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.34.2-1mdk

2002-08-27 22:25  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/: perm.0, perm.1, perm.2, perm.3, perm.4, perm.5: fix /boot
	  with a better way

2002-08-27 16:13  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.34.1-1mdk

2002-08-27 16:10  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/: perm.0, perm.1, perm.2, perm.3, perm.4, perm.5: correct
	  permissions for /boot/kernel.h*

2002-08-27 16:03  Frederic Lepied <flepied@mandrakesoft.com>

	* Makefile: launch make in cron-sh to check shell script syntax

2002-08-27 16:03  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/security.sh: correct syntax error

2002-08-27 16:02  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/Makefile: check the syntax of the shell scripts

2002-08-26 23:05  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/: server.4, server.5: added dm

2002-08-26 17:18  Pablo Saratxaga <pablo@mandrakesoft.com>

	* man/: cs/init.sh.8, cs/msec.8, ru/init.sh.8, ru/msec.8: Added
	  Czech and Russian man pages

2002-08-25 21:55  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.34-1mdk

2002-08-25 21:48  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: security_check.sh and diff_check.sh installed 644 to
	  prevent direct execution.

2002-08-25 21:47  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/: perm.4, perm.5: let hosts.{allow,deny} be readable by
	  everyone (to allow all the daemons to access them).

2002-08-25 21:43  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/diff_check.sh: emptiness is tested in Maillog now

2002-08-25 21:41  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/security.sh: implement MAIL_EMPTY_CONTENT

2002-08-25 21:39  Frederic Lepied <flepied@mandrakesoft.com>

	* doc/security.txt: documented daily mailing of security checks

2002-08-25 21:38  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec.py: added MAIL_EMPTY_CONTENT

2002-08-25 21:30  Frederic Lepied <flepied@mandrakesoft.com>

	* share/ConfigFile.py: enhanced get_shell_variable to be able to
	  specify a region to do the search.

2002-08-25 21:29  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: allow_reboot: used section X-:0-Core instead of
	  X-:*-Greeter for kdmrc.

	  password_history: create /etc/security/opasswd if it doesn't
	  exist.

2002-08-19 23:09  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.33-1mdk

2002-08-19 23:09  Frederic Lepied <flepied@mandrakesoft.com>

	* Makefile: use $(RPM_BUILD_ROOT) instead of $RPM_BUILD_ROOT

2002-08-19 23:08  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/: diff_check.sh, security_check.sh: corrected wording

2002-08-19 23:07  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec: added missing "not"

2002-08-11 20:49  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.32-1mdk

2002-08-11 20:48  Frederic Lepied <flepied@mandrakesoft.com>

	* Makefile: corrected the compilation of the python part.

2002-08-11 20:44  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec.py: replace 0 => no and 1 => yes.

	  call password_history according to the levels.

2002-08-11 20:43  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: corrected without_password

2002-08-11 20:42  Frederic Lepied <flepied@mandrakesoft.com>

	* share/shadow.py: added without_password

2002-08-11 20:41  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: password_length use system-auth instead of
	  passwd pam file.

	  new function: password_history.

2002-08-11 20:39  Frederic Lepied <flepied@mandrakesoft.com>

	* share/Perms.py: do not change non local files/directories.

2002-08-11 20:38  Frederic Lepied <flepied@mandrakesoft.com>

	* doc/security.txt: documented password history and root logins.

2002-08-11 20:34  Frederic Lepied <flepied@mandrakesoft.com>

	* man/C/msec.8: document options

2002-07-31 17:41  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.31.1-1mdk

2002-07-31 17:40  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec.py: correct the test for processing level.local.

2002-07-30 20:51  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.31-1mdk

2002-07-30 20:50  Frederic Lepied <flepied@mandrakesoft.com>

	* share/.cvsignore: added level.*

2002-07-30 20:50  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: added fields to describe how arguments are used
	  (to be used by shadow.py)

2002-07-30 20:48  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec.py: added print and nolocal options

2002-07-30 20:47  Frederic Lepied <flepied@mandrakesoft.com>

	* share/shadow.py: added print_changes and get_translation

2002-07-30 20:46  Frederic Lepied <flepied@mandrakesoft.com>

	* share/Makefile: added rules for level.*

2002-07-29 09:36  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.30.2-1mdk

2002-07-29 09:36  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: fixed typo in allow_root_login

2002-07-28 22:53  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.30.1-1mdk

2002-07-28 22:53  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: (set_zero_one_variable): corrected bug when the
	  variable doesn't exist before setting it.

2002-07-27 22:47  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.30

2002-07-27 22:46  Frederic Lepied <flepied@mandrakesoft.com>

	* share/CHANGES: added 0.30 changes

2002-07-27 22:40  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: finalized no security lowering feature.

2002-07-27 21:26  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec: corrected last argument processing.

2002-07-27 21:23  Frederic Lepied <flepied@mandrakesoft.com>

	* share/README: corrected splitted functions.

2002-07-27 21:13  Frederic Lepied <flepied@mandrakesoft.com>

	* man/C/msec.8: descibed differences between interactive and
	  non-interactive calls.  added a paragraph on the logs.

2002-07-27 21:12  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: * (more functions): don't lower security when
	  not changing secure level.

2002-07-25 01:16  Frederic Lepied <flepied@mandrakesoft.com>

	* doc/security.txt: * describe file permissions according to the
	  levels.  * correct description of X server security.

2002-07-25 01:14  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/promisc_check.sh: * use TTY_WARN instead of TTYLOG_WARN
	  (David Harris).

2002-07-25 01:07  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: * (set_zero_one_variable): factorize
	  sysctl.conf manipulation functions.  *
	  (accept_broadcasted_icmp_echo): split from accept_icmp_echo.	*
	  (set_umask): factorize set_root_umask and set_user_umask.  *
	  (enable_dns_spoofing_protection): split from
	  enable_ip_spoofing_protection.  * (allow_remote_root_login):
	  split from allow_root_login.	* (allow_autologin set_umask
	  set_zero_one_variable allow_remote_root_login): don't lower
	  security when not changing security level.  *
	  (allow_xserver_to_listen): split from allow_x_connections for
	  better granularity.  * (enable_ip_spoofing_protection): when
	  disabling ip spoofing protection put back
	  net.ipv4.conf.all.rp_filter to 0 (David Harris).

2002-07-25 01:06  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec.py: call splitted function with the same args.

2002-07-25 01:02  Frederic Lepied <flepied@mandrakesoft.com>

	* share/ConfigFile.py: * (ConfigFile.get_match): return the whole
	  line if replace is None.

2002-07-06 15:36  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: if sysctl.conf is modified reload its content
	  with sysctl but do not restart network.

2002-07-04 19:02  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.25-1mdk

2002-07-04 18:57  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: allow_root_login: corrected regexp to avoid
	  adding the string at every run.

2002-07-04 18:38  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/: server.snf, perm.snf: [no log message]

2002-07-04 18:37  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/server.4: added entry for MNF

2002-07-04 09:30  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: insert changes when no match is found for
	  logindefs and sshd_config.

2002-06-27 09:58  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.24-1mdk

2002-06-27 09:57  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec: pass -c to Perms.py if the level is given on the
	  command line.

2002-06-27 09:56  Frederic Lepied <flepied@mandrakesoft.com>

	* share/Perms.py: if we don't change the security level, try not to
	  lower the security if the user has changed it manually (added -c
	  option).

2002-06-04 20:24  Christian Belisle <cbelisle@mandrakesoft.com>

	* share/libmsec.py: corrected typo

2002-05-31 05:35  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.23-1mdk

2002-05-31 05:34  Frederic Lepied <flepied@mandrakesoft.com>

	* share/: ConfigFile.py, Perms.py: report more complete error
	  messages.

2002-05-31 05:31  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec: check that the root is running the process

2002-05-29 22:39  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: corrected typo

2002-05-29 22:38  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.22-1mdk

2002-05-29 22:35  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: added no_password_aging_for

2002-05-14 19:04  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/: server.4, server.5: added shorewall

2002-04-29 19:52  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/security_check.sh: corrected alias files loop (Jérôme
	  UZEL).  CVS:
	  ----------------------------------------------------------------------
	  CVS: Enter Log.  Lines beginning with `CVS: ' are removed
	  automatically CVS: committing files: CVS:
	  /home/flepied/work/msec/cron-sh/security_check.sh CVS: CVS: Type
	  C-c C-c when done or C-c C-d to abort.  CVS:
	  ----------------------------------------------------------------------

2002-04-19 20:17  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.21-1mdk

2002-04-19 20:17  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec.py: load the config file using the context of mseclib.

2002-04-19 20:15  Frederic Lepied <flepied@mandrakesoft.com>

	* man/C/msec.8: don't specify a version for the doc path.

2002-03-27 22:23  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.20-2mdk

2002-03-27 22:16  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: allow_reboot: only touch the shutdown,
	  poweroff, reboot and halt files if they don't exist.

2002-03-26 06:03  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.20-1mdk

2002-03-26 05:55  Frederic Lepied <flepied@mandrakesoft.com>

	* share/.cvsignore: added *.flog

2002-03-26 05:55  Frederic Lepied <flepied@mandrakesoft.com>

	* share/shadow.py: handle ignore case.

2002-03-26 05:54  Frederic Lepied <flepied@mandrakesoft.com>

	* share/man.py: document ignore argument.

2002-03-26 05:54  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: removed yes/no declarations as they are used
	  only from mseclib.py.  Maximum password aging can be -1.

2002-03-09 01:24  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.19-8mdk

2002-03-09 01:22  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/: perm.0, perm.1, perm.2, perm.3: /var/log/lp-errs must be
	  600

2002-03-08 19:56  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.19-7mdk

2002-03-08 19:42  Frederic Lepied <flepied@mandrakesoft.com>

	* share/shadow.py: export yes/no to be in sync with libmsec.

2002-03-08 19:41  Frederic Lepied <flepied@mandrakesoft.com>

	* share/man.py: document the value of arguments.

2002-03-08 19:41  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: added yes and no to be used as argument to the
	  functions.

2002-03-08 19:40  Frederic Lepied <flepied@mandrakesoft.com>

	* man/C/msec.8: ponts to security.txt

2002-03-08 19:37  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/: perm.0, perm.1, perm.2, perm.3, perm.4, perm.5: fix
	  permissions of /var/log/lp-errs for LPRng

2002-03-06 05:12  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.19-6mdk

2002-03-06 05:11  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec, cron-sh/security.sh: don't run twice

2002-03-04 20:19  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.19-5mdk

2002-03-04 20:19  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.sh: more robust if SECURE_LEVEL isn't set.

2002-03-04 20:18  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: use 127.0.0.1 instead of localhost in
	  hosts.deny

2002-02-26 22:16  Pixel <pixel@mandrakesoft.com>

	* msec.csh, msec.spec: msec.csh: "unhash" workaround for /usr/bin
	  non-readable (msec 5) applied after modifying PATH (eurk!)

2002-02-25 22:15  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.19-4mdk

2002-02-25 22:14  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.sh: don't manage /usr/games and /usr/X11R6/bin, this has
	  nothing to do with security

2002-02-25 22:13  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: don't restart network on sysctl.conf change.

2002-02-25 22:12  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/: diff_check.sh, security.sh, security_check.sh: split
	  rpm-va check in 2: config files and other files

2002-02-25 22:07  Frederic Lepied <flepied@mandrakesoft.com>

	* doc/security.txt: resync with current code

2002-02-24 01:38  Pablo Saratxaga <pablo@mandrakesoft.com>

	* man/fr/init.sh.8: added French man page

2002-02-22 22:56  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.19-3mdk

2002-02-22 22:55  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec.py: do not use enable_libsafe anymore.

2002-02-22 21:13  Pablo Saratxaga <pablo@mandrakesoft.com>

	* man/eu/: init.sh.8, msec.8: Added Basque files

2002-02-22 20:38  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/diff_check.sh: security.conf from /etc/security/msec/ to
	  /var/lib/msec/.

2002-02-22 19:42  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/security_check.sh: check uid and not gid

2002-02-22 14:23  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/promisc_check.sh: use security.conf from /var/lib/msec

2002-02-21 14:52  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/: perm.0, perm.1, perm.2, perm.3, perm.4, perm.5, perm.snf:
	  let drakx handle lilo.conf perm

2002-02-20 22:51  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.19-2mdk

2002-02-20 22:50  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec.py: implement no password in level 0

	  X listens to tcp connections in level 3

2002-02-20 22:50  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: added enable_password

2002-02-20 22:49  Frederic Lepied <flepied@mandrakesoft.com>

	* share/CHANGES: documented changes in versions 0.18 and 0.19

2002-02-20 22:47  Frederic Lepied <flepied@mandrakesoft.com>

	* share/ConfigFile.py: added insert_before.

2002-02-20 22:40  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/: perm.4, perm.5: kmem => adm

2002-02-19 21:18  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/security.sh: corrected typo msec/msec.

2002-02-19 21:15  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.19-1mdk

2002-02-19 21:10  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: /etc/security/msec/security.conf =>
	  /var/lib/msec/security.conf

	  enhanced documentation.

	  catch inconsistency between /etc/shadow and /etc/passwd.

2002-02-19 21:00  Frederic Lepied <flepied@mandrakesoft.com>

	* man/C/msec.8: /etc/security/msec/security.conf =>
	  /var/lib/msec/security.conf

2002-02-19 20:17  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/: perm.4, perm.5: corrected permissions for
	  /var/log/intraline

2002-02-19 20:12  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec: use perm file from /usr/share/msec/

2002-02-19 20:08  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/security.sh: use /var/lib/msec/msec/security.conf

2002-02-19 20:05  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.csh: corrected id test.

2002-02-15 23:59  Frederic Lepied <flepied@mandrakesoft.com>

	* share/.cvsignore: added generated files

2002-02-15 06:22  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.18-6mdk

2002-02-15 06:21  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.sh: test SECURE_LEVEL before using it as a number

2002-02-15 06:20  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec.py: use the right string for the prog name

2002-02-15 06:19  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: allow an extra arg to specify the log to do in
	  enable_console_log

2002-02-15 06:18  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/security.sh: use umask from the secure level setting

2002-02-15 05:36  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/promisc_check.sh: use complete path for the ip command.

2002-02-14 03:59  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.18-5mdk

2002-02-14 02:50  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: only reports an error for an empty wheel group
	  when run interactively.

2002-02-14 01:54  Frederic Lepied <flepied@mandrakesoft.com>

	* share/: Config.py, ConfigFile.py, Perms.py: corrected warnings
	  reported by pychecker

2002-02-14 01:53  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/promisc_check.sh: use ip to detect promiscuous mode with
	  2.4 kernels.

2002-02-14 01:52  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.csh, msec.sh: handle umask and . in path

2002-02-11 15:44  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/perm.5: /etc/sendmail.cf 640 to sendmail to work.

2002-02-05 21:10  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.18-4mdk

2002-02-05 21:07  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec.py: add a delay in passowrd change before desactiving.

2002-02-05 20:52  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: handle allowed delay in password changing.

2002-02-05 17:48  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: use true/false for Browser value in gdm.conf

2002-02-05 05:19  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.18-3mdk

2002-02-05 05:14  Frederic Lepied <flepied@mandrakesoft.com>

	* share/ConfigFile.py: (exists): add an extra arg to really test if
	  the file exists (without testing if the file + suffix exists).

2002-02-05 05:12  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec.py: handle the extra arg for allow_x_connections.

2002-02-05 05:11  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: corrected issue moving (only when really
	  present).

	  add doc strings to be used in the man page.

	  (allow_x_connections): add an extra argument to control if the X
	  server listens on tcp port.

2002-02-05 04:53  Frederic Lepied <flepied@mandrakesoft.com>

	* share/Perms.py: removed debugging trace.

2002-02-05 04:09  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec: pass the same options used for msec.py to Perms.py

2002-02-05 04:07  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/perm.4: put /etc/hosts.{allow,deny,equiv} in the daemon
	  group

2002-02-05 04:06  Frederic Lepied <flepied@mandrakesoft.com>

	* Makefile: don't commit in the Makefile

2002-02-05 04:05  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/perm.5: put /etc/hosts.{allow,deny,equiv}

2002-02-05 04:04  Frederic Lepied <flepied@mandrakesoft.com>

	* share/Perms.py: process the options like msec to be able to log
	  the same way.

2002-02-05 04:03  Frederic Lepied <flepied@mandrakesoft.com>

	* man/C/msec.8: Linux-Mandrake => Mandrake Linux

	  remove references to the custom level

2002-02-05 03:37  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/security_check.sh: corrected typo

2002-02-05 03:34  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/security_check.sh: back to nogroup

2002-02-05 02:23  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/security_check.sh: use nobody instead of nogroup

2002-02-04 04:27  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/security_check.sh: added .ssh/id_dsa .ssh/id_rsa to the
	  list of files to check.

2002-02-04 04:26  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/security.sh: don't report /tmp and /var/tmp as word
	  writable dirs (it's normal)

2002-02-02 06:20  Frederic Lepied <flepied@mandrakesoft.com>

	* share/Makefile: create the man page for mseclib

2002-02-02 06:20  Frederic Lepied <flepied@mandrakesoft.com>

	* share/man.py: first version

2002-01-29 06:22  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.18-2mdk

2002-01-29 06:22  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: password aging for root too.

2002-01-29 04:32  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/diff_check.sh: changed the wording for the rpm-va
	  changes.

2002-01-29 03:20  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/perm.4: the snf mod are not needed

2002-01-29 03:19  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec.py: new option: server_level to set a different
	  server_level from the secure_level. For example the snf will be
	  in secure_level 4 and server_level snf.

2002-01-29 03:19  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: handle /etc/security/msec/server symlink
	  through create_server_link().

	  enable_security_check: register daily cron in /etc/cron.daily
	  instead of /etc/cron.d.

2002-01-28 19:41  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec.py: report msec instead of msec.py in the error
	  messages.

2002-01-28 19:09  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/: perm.1, perm.2, perm.3, perm.5, perm.snf: made
	  mandrake_consmap 644 (Andrej)

2002-01-28 19:08  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/perm.4: merged diff with snf.

2002-01-28 17:25  Florin Grad <florin@mandrakesoft.com>

	* conf/: perm.0, perm.1, perm.2, perm.3, perm.4, perm.5, perm.snf:
	  change sendmail ownership

2002-01-28 15:52  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/diff_check.sh: report too the date and the hostname when
	  the report is empty.

2002-01-27 08:07  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.18-1mdk

2002-01-27 08:06  Frederic Lepied <flepied@mandrakesoft.com>

	* Makefile: clean in share too

2002-01-27 04:09  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec.py: use mseclib to have a way to process a config file
	  before really doing the changes.

2002-01-27 04:08  Frederic Lepied <flepied@mandrakesoft.com>

	* share/libmsec.py: regroup the on/off funtions in uniq ones with
	  an arg to decide on/off.

2002-01-27 04:05  Frederic Lepied <flepied@mandrakesoft.com>

	* share/: shadow.py, Makefile: first version

2002-01-22 21:28  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: clean before installing and don't install init.sh man
	  pages anymore.

2002-01-22 21:27  Frederic Lepied <flepied@mandrakesoft.com>

	* Makefile: don't put .bz2 archive in source for localcopy.

2002-01-22 21:14  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.17-15mdk

2002-01-22 21:14  Frederic Lepied <flepied@mandrakesoft.com>

	* share/CHANGES: more doc

2002-01-22 21:12  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/security.sh, cron-sh/security_check.sh, share/msec.py:
	  experimental chkrootkit check.

2002-01-22 20:23  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/: perm.0, perm.1, perm.2, perm.3, perm.4, perm.5, perm.snf:
	  corrected errors reported by Pierre Fortin's script

2002-01-22 20:21  Frederic Lepied <flepied@mandrakesoft.com>

	* man/: C/init.sh.8, fr/init.sh.8: removed init-sh man page

2002-01-22 03:58  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/: perm.0, perm.1, perm.2, perm.3: corrected /bin/rpm path &
	  perms

2002-01-21 17:23  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.17-14mdk

2002-01-21 17:19  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/: perm.3, perm.4, perm.5, perm.snf: make mandrake_consmap
	  755 because we it needs to be readable by everyone

2002-01-21 05:18  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.17-13mdk

2002-01-21 05:16  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/: perm.0, perm.1, perm.2, perm.3, perm.4, perm.5, perm.snf:
	  corrected mandrake_consmap permissions and ping path/permissions.

2002-01-21 05:14  Frederic Lepied <flepied@mandrakesoft.com>

	* share/CHANGES: document 0.17-13mdk changes

2002-01-21 05:11  Frederic Lepied <flepied@mandrakesoft.com>

	* cron-sh/diff_check.sh: mail even when the log is empty to signify
	  that the check is fine.

2002-01-21 05:07  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec.py: log the start of the program in interactive mode.

2002-01-21 05:06  Frederic Lepied <flepied@mandrakesoft.com>

	* share/Perms.py: allow current to be specified for permissions
	  too.

	  protect and log errors in os calls.

2002-01-21 05:05  Frederic Lepied <flepied@mandrakesoft.com>

	* share/Log.py: log errors.

2002-01-21 05:04  Frederic Lepied <flepied@mandrakesoft.com>

	* share/ConfigFile.py: protect and log errors on os calls.

2002-01-21 05:03  Frederic Lepied <flepied@mandrakesoft.com>

	* Makefile: corrected clean rule

2002-01-21 05:03  Frederic Lepied <flepied@mandrakesoft.com>

	* init-sh/cleanold.sh: don't create groups (rely on setup).

2002-01-18 00:33  Stefan Siegel <siegel@linux-mandrake.com>

	* init-sh/cleanold.sh: use "groupadd -g" to ensure the groupid
	  provided by latest setup package

2002-01-17 22:21  Frederic Lepied <flepied@mandrakesoft.com>

	* share/msec.py: corrected password_length mismatch.

2002-01-17 20:56  Frederic Lepied <flepied@mandrakesoft.com>

	* Makefile, msec.sh, msec.spec, conf/perm.0, conf/perm.1,
	  conf/perm.2, conf/perm.3, conf/perm.4, conf/perm.5,
	  conf/perm.snf, cron-sh/diff_check.sh, cron-sh/security.sh,
	  cron-sh/security_check.sh, init-sh/cleanold.sh, share/.cvsignore,
	  share/CHANGES, share/Config.py, share/ConfigFile.py,
	  share/Log.py, share/Perms.py, share/README, share/compile.py,
	  share/libmsec.py, share/msec, share/msec.py: 0.17

2002-01-17 18:22  Stefan Siegel <siegel@linux-mandrake.com>

	* init-sh/: lib.sh, lib.sh.usermode: use "groupadd -g" to ensure
	  the groupid provided by latest setup package

2001-12-05 12:32  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: typo error

2001-12-05 12:09  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: create the /etc/sysconfig/ directory

2001-12-05 12:06  Florin Grad <florin@mandrakesoft.com>

	* msec.csh: fix the tests, thx to Konrad Bernlohr

2001-12-05 12:01  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: changelog for 4mdk and use
	  %{_sysconfdir}/sysconfig/msec instead of %{_sysconfdir}/msec

2001-12-05 04:52  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.sh: test the existence of /etc/sysconfig/msec before
	  sourcing it.

2001-12-02 07:52  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/: server.4, server.5: snort => snortd

2001-12-02 07:52  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/: perm.0, perm.1, perm.2, perm.3, perm.4, perm.5, perm.snf:
	  added default owners of /var/log/{news,snort,uucp}

2001-12-02 07:03  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.16-3mdk

2001-12-02 07:03  Frederic Lepied <flepied@mandrakesoft.com>

	* init-sh/: level0.sh, level1.sh, level2.sh, level3.sh, level4.sh,
	  level5.sh, levelsnf.sh: added sysctl.conf, host.conf and
	  /etc/issue{.net} customization.

2001-12-02 06:59  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/: server.4, server.5: added firewall and IDS to the list.

2001-12-02 06:58  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/: perm.0, perm.1, perm.2, perm.3, perm.4, perm.5, perm.snf:
	  customize rpm progs and /usr/share/doc permissions.

2001-12-02 06:56  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.csh: sed black magic to read /etc/sysconfig/msec and
	  translate sh variables in csh ones.

2001-12-02 06:55  Frederic Lepied <flepied@mandrakesoft.com>

	* init-sh/custom.sh: libsafe.so.1.3 => libsafe.so.2

2001-12-02 06:54  Frederic Lepied <flepied@mandrakesoft.com>

	* init-sh/lib.sh: added LoadSysctl, RemoveIssue, RemoveIssueNet,
	  RestoreIssues functions.

2001-12-02 05:32  Frederic Lepied <flepied@mandrakesoft.com>

	* Makefile: corrected clean rule

2001-11-30 14:22  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: 0.16-3mdk Changelog

2001-11-30 14:15  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: update the changelog message in the 0.16-3mdk

2001-11-30 14:13  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: update the post message

2001-11-30 13:32  Florin Grad <florin@mandrakesoft.com>

	* init-sh/levelsnf.sh: allow the ssh connexions from everywhere

2001-11-29 18:33  Florin Grad <florin@mandrakesoft.com>

	* msec.csh: sysconfig file

2001-11-29 18:32  Florin Grad <florin@mandrakesoft.com>

	* msec.sh: source the sysconfig file

2001-11-29 18:30  Florin Grad <florin@mandrakesoft.com>

	* msec.sh: add SECURE LEVEL

2001-11-29 18:23  Florin Grad <florin@mandrakesoft.com>

	* init-sh/lib.sh: bring back the cleaning of the profile files in
	  order to make an update work

2001-11-29 18:11  Florin Grad <florin@mandrakesoft.com>

	* init-sh/level5.sh: fix a typo error space in ldpreload condition
	  if

2001-11-29 18:04  Florin Grad <florin@mandrakesoft.com>

	* init-sh/levelsnf.sh: typo error in SECURE_LEVEL

2001-11-29 17:56  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: create the entries for the %{_sysconfdir}/%{name} file

2001-11-29 17:50  Florin Grad <florin@mandrakesoft.com>

	* msec.csh: remove the sysconfig/source

2001-11-29 17:50  Florin Grad <florin@mandrakesoft.com>

	* msec.sh: remove the source of sysconfig/msec

2001-11-29 15:24  Florin Grad <florin@mandrakesoft.com>

	* init-sh/lib.sh: clean sysconfig/msec

2001-11-29 15:15  Florin Grad <florin@mandrakesoft.com>

	* init-sh/custom.sh: remove the profile.d comment

2001-11-29 15:12  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: fix changelog for 3mdk

2001-11-29 15:12  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: 3mdk

2001-11-29 14:39  Florin Grad <florin@mandrakesoft.com>

	* init-sh/lib.sh: clean the entries related to the
	  profile.d/msec*sh files

2001-11-29 14:38  Florin Grad <florin@mandrakesoft.com>

	* init-sh/levelsnf.sh: clean the comment related to the profile.d
	  dir

2001-11-29 14:37  Florin Grad <florin@mandrakesoft.com>

	* init-sh/: level0.sh, level1.sh, level2.sh, level3.sh, level4.sh,
	  level5.sh: remove the comments related to profile.d

2001-11-29 14:33  Florin Grad <florin@mandrakesoft.com>

	* init-sh/level5.sh: sysconfig/msec support

2001-11-29 14:30  Florin Grad <florin@mandrakesoft.com>

	* init-sh/custom.sh: add the sysconfig/msec support

2001-11-29 14:26  Florin Grad <florin@mandrakesoft.com>

	* init-sh/levelsnf.sh: add sysconfig/msec support

2001-11-28 16:39  Florin Grad <florin@mandrakesoft.com>

	* init-sh/: level0.sh, level1.sh, level2.sh, level3.sh, level4.sh,
	  level5.sh: add the /etc/sysconfig/mesc support for UMASK

2001-11-28 16:14  Florin Grad <florin@mandrakesoft.com>

	* msec.csh, msec.sh: source the /etc/sysconfig/msec file

2001-11-28 15:16  Florin Grad <florin@mandrakesoft.com>

	* init-sh/custom.sh: add the support to the profile.d files

2001-11-08 17:35  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: typo error in post script

2001-11-08 17:23  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: update post section and modify the changelog

2001-11-08 16:37  Florin Grad <florin@mandrakesoft.com>

	* init-sh/msec: typo error

2001-11-08 16:26  Florin Grad <florin@mandrakesoft.com>

	* init-sh/msec: new entries for snf

2001-11-08 16:25  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: new version

2001-11-08 16:23  Florin Grad <florin@mandrakesoft.com>

	* init-sh/grpuser.sh: new support for snf

2001-11-08 12:21  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: 32 mdk

2001-11-08 12:17  Florin Grad <florin@mandrakesoft.com>

	* init-sh/lib.sh: add snf in RootSshLogin function

2001-11-08 12:12  Florin Grad <florin@mandrakesoft.com>

	* init-sh/levelsnf.sh, conf/perm.snf: [no log message]

2001-11-07 16:38  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: make rpmlint happy and add Url tag

2001-11-07 16:36  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: Mandrake Linux

2001-11-07 16:28  Florin Grad <florin@mandrakesoft.com>

	* conf/server.snf: new snf level

2001-11-07 16:28  Florin Grad <florin@mandrakesoft.com>

	* conf/server.4: back to the old 4 level

2001-11-07 16:26  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: changelog enrtry in 31mdk

2001-11-07 16:25  Florin Grad <florin@mandrakesoft.com>

	* init-sh/levelsnf.sh: nex snf level

2001-11-07 16:15  Florin Grad <florin@mandrakesoft.com>

	* init-sh/msec: add snf entry in usage

2001-11-07 16:11  Florin Grad <florin@mandrakesoft.com>

	* conf/: perm.3, perm.4, perm.5, perm.snf: new entry

2001-11-07 15:31  Florin Grad <florin@mandrakesoft.com>

	* conf/server.4: add named in authorized servers for level 4

2001-11-07 15:29  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: changelog for 31mdk

2001-11-07 15:26  Florin Grad <florin@mandrakesoft.com>

	* conf/server.4: add some servers in level 4

2001-11-07 15:03  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: new modifs

2001-11-07 15:02  Florin Grad <florin@mandrakesoft.com>

	* conf/: perm.3, perm.4, perm.5: add monitoring permissions

2001-11-07 14:58  Florin Grad <florin@mandrakesoft.com>

	* conf/: perm.3, perm.4, perm.5: add the right permissions for naat
	  packages

2001-11-07 14:33  Florin Grad <florin@mandrakesoft.com>

	* conf/: perm.0, perm.1, perm.2, perm.3, perm.4, perm.5, server.4:
	  modify the squid permissions and add naat-backend permissions

2001-10-03 15:07  Florin Grad <florin@mandrakesoft.com>

	* init-sh/: level4.sh, level5.sh: remove the touch ld.so.preload as
	  we're doing it in lib.sh

2001-10-03 15:06  Florin Grad <florin@mandrakesoft.com>

	* init-sh/lib.sh: touch ld.so.preload before cleaning

2001-10-03 14:58  Florin Grad <florin@mandrakesoft.com>

	* msec.csh, msec.sh: first add

2001-10-03 14:52  Florin Grad <florin@mandrakesoft.com>

	* msec.spec, init-sh/level4.sh, init-sh/level5.sh: libsafe.so.2

2001-10-03 14:51  Florin Grad <florin@mandrakesoft.com>

	* init-sh/lib.sh: add print in CleanRules

2001-10-03 14:50  Florin Grad <florin@mandrakesoft.com>

	* init-sh/: level0.sh, level1.sh, level2.sh, level3.sh, level4.sh,
	  level5.sh: libsafe.so.2 in levels 4/5 and remove the . in PATH

2001-09-29 16:05  Florin Grad <florin@mandrakesoft.com>

	* init-sh/: level0.sh, level1.sh, level2.sh, level3.sh, level4.sh,
	  level5.sh: add \n

2001-09-29 15:58  Florin Grad <florin@mandrakesoft.com>

	* init-sh/lib.sh: remove or print

2001-09-29 15:46  Florin Grad <florin@mandrakesoft.com>

	* man/C/: init.sh.8, msec.8: date

2001-09-29 15:44  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: date in 30mdk

2001-09-29 15:42  Florin Grad <florin@mandrakesoft.com>

	* init-sh/lib.sh: add the E in grep in AddRules

2001-09-29 15:41  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: 30mdk man changelog

2001-09-29 15:40  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: 30mdk changelog

2001-09-29 15:38  Florin Grad <florin@mandrakesoft.com>

	* init-sh/: level0.sh, level1.sh, level2.sh, level3.sh, level4.sh,
	  level5.sh: PATH modifs

2001-09-29 15:34  Florin Grad <florin@mandrakesoft.com>

	* init-sh/lib.sh: bring back the or print in CleanRules

2001-09-29 15:23  Florin Grad <florin@mandrakesoft.com>

	* man/C/: init.sh.8, msec.8: update the doc path

2001-09-27 17:23  Florin Grad <florin@mandrakesoft.com>

	* init-sh/lib.sh: remove the or print part in the perl line in
	  CleanRules

2001-09-27 17:22  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: date in 30mdk changelog

2001-09-27 17:21  Florin Grad <florin@mandrakesoft.com>

	* init-sh/: level0.sh, level1.sh, level2.sh, level3.sh, level4.sh,
	  level5.sh: move from profile ro the profile.d/msec.{sh,csh}
	  entries

2001-09-27 17:14  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: add a changelog entry in the 30mdk

2001-09-26 16:25  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: add an entry in the 30 mdk changelog

2001-09-26 16:24  Florin Grad <florin@mandrakesoft.com>

	* init-sh/lib.sh: remove the -E option in the AddRules grep

2001-09-26 15:48  Florin Grad <florin@mandrakesoft.com>

	* init-sh/: level0.sh, level1.sh, level2.sh, level3.sh, level4.sh,
	  level5.sh: typo errors

2001-09-26 14:35  Florin Grad <florin@mandrakesoft.com>

	* init-sh/lib.sh: CleanRules for /etc/profile and /etc/zprofile

2001-09-26 14:20  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: 30mdk

2001-09-26 14:10  Florin Grad <florin@mandrakesoft.com>

	* init-sh/: level1.sh, level2.sh, level3.sh, level4.sh, level5.sh:
	  comment for profile.d section

2001-09-26 14:07  Florin Grad <florin@mandrakesoft.com>

	* init-sh/: level0.sh, level1.sh, level2.sh, level3.sh, level4.sh,
	  level5.sh: use profile.d/* files instead of /etc/{z}profile

2001-09-26 12:03  Florin Grad <florin@mandrakesoft.com>

	* conf/: perm.0, perm.1, perm.2, perm.3, perm.4, perm.5: use
	  profile.d/ files instead of profile

2001-09-20 18:05  Florin Grad <florin@mandrakesoft.com>

	* init-sh/: level0.sh, level1.sh, level2.sh, level3.sh, level4.sh,
	  level5.sh: typo for /etc/profile.d/*csh

2001-09-20 17:54  Florin Grad <florin@mandrakesoft.com>

	* init-sh/level2.sh: typo in profile.d entries

2001-09-20 17:43  Florin Grad <florin@mandrakesoft.com>

	* init-sh/: level0.sh, level1.sh, level2.sh, level3.sh, level4.sh,
	  level5.sh: profile.d entries

2001-09-20 17:36  Florin Grad <florin@mandrakesoft.com>

	* init-sh/lib.sh.usermode: remove the /etc/profile entries

2001-09-20 17:35  Florin Grad <florin@mandrakesoft.com>

	* init-sh/lib.sh: remove the /etc/profile entries and use
	  /etc/profile.d/msec*sh|csh instead

2001-09-20 17:28  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: /etc/profile.d*sh|csh entries

2001-09-20 15:43  Florin Grad <florin@mandrakesoft.com>

	* conf/: server.4, server.5: add the usb service

2001-09-20 15:42  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: authorize the usb service in 4/5 levels of security

2001-09-19 19:00  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec:

	  Require /bin/touch

2001-09-19 15:37  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: source2 is msec.logrotate and not msec

2001-09-19 14:32  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec, init-sh/level0.sh, init-sh/level1.sh,
	  init-sh/level2.sh, init-sh/level3.sh, init-sh/level4.sh,
	  init-sh/level5.sh, init-sh/lib.sh:

	  - Output in /etc/profile.d/msec.sh as only .sh extenssion files
	  are read.  - Keep the output of the SECURE_LEVEL in /etc/profile
	  and /etc/zprofile.

2001-09-19 14:28  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: 25mdk

2001-09-19 14:21  Florin Grad <florin@mandrakesoft.com>

	* conf/server.4: sshd entry

2001-09-19 14:20  Florin Grad <florin@mandrakesoft.com>

	* conf/: perm.0, perm.1, perm.2, perm.3, perm.4, perm.5: squidGuard
	  entries

2001-09-19 14:16  Florin Grad <florin@mandrakesoft.com>

	* init-sh/: level0.sh, level1.sh, level2.sh, level3.sh, level4.sh,
	  level5.sh, lib.sh, lib.sh.usermode: RootSshLogin

2001-09-19 14:00  Florin Grad <florin@mandrakesoft.com>

	* doc/security.txt: there are no */init-sh/ directories in the rpm
	  msec

2001-09-19 13:30  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec: [no log message]

2001-09-19 13:18  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec: [no log message]

2001-09-19 11:37  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: level0.sh, level1.sh, level2.sh, level3.sh, level4.sh,
	  level5.sh, lib.sh: [no log message]

2001-09-17 19:14  Daouda Lo <daouda@mandrakesoft.com>

	* msec.logrotate: logrotate file

2001-09-17 18:44  Daouda Lo <daouda@mandrakesoft.com>

	* msec.spec: del doc/*

2001-09-17 18:42  Daouda Lo <daouda@mandrakesoft.com>

	* msec.spec: comment doc/*.8

2001-09-17 18:35  Daouda Lo <daouda@mandrakesoft.com>

	* msec.spec: fix  kdm sec hole at level 4 (displayin users)

2001-09-17 18:32  Daouda Lo <daouda@mandrakesoft.com>

	* init-sh/lib.sh: -fix users display in level up to 4 (kdm)

2001-09-14 18:14  Florin Grad <florin@mandrakesoft.com>

	* conf/: perm.2, perm.3, perm.5: /var/log/squid permisssions

2001-09-14 18:13  Florin Grad <florin@mandrakesoft.com>

	* conf/: perm.0, perm.1, perm.4: /var/log/squid permisssion

2001-09-14 18:12  Florin Grad <florin@mandrakesoft.com>

	* msec.spec: /var/log/squid permissions

2001-09-03 03:24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* Makefile, msec.spec, doc/init.sh.8, doc/msec.8, man/C/init.sh.8,
	  man/C/msec.8, man/fr/init.sh.8: moved man pages to man/C, added
	  French man page

2001-08-09 11:02  Frederic Lepied <flepied@mandrakesoft.com>

	* msec.spec: 0.15-18mdk

2001-08-09 11:00  Frederic Lepied <flepied@mandrakesoft.com>

	* Makefile: add rules to build test and release rpms.

2001-08-09 10:48  Frederic Lepied <flepied@mandrakesoft.com>

	* init-sh/: custom.sh, level0.sh, level1.sh, level2.sh, level3.sh,
	  level4.sh: added vc/[1-6] to securetty (devfs)

2001-08-09 10:47  Frederic Lepied <flepied@mandrakesoft.com>

	* conf/perm.4: made securetty entry compliant with other perm.*

2001-08-09 10:10  Frederic Lepied <flepied@mandrakesoft.com>

	* Makefile, TODO, msec.spec, conf/perm.0, conf/perm.1, conf/perm.2,
	  conf/perm.3, conf/perm.4, conf/perm.5, conf/server.4,
	  conf/server.5, cron-sh/security.sh, cron-sh/security_check.sh,
	  init-sh/custom.sh, init-sh/level0.sh, init-sh/level1.sh,
	  init-sh/level2.sh, init-sh/level3.sh, init-sh/level4.sh,
	  init-sh/level5.sh, init-sh/lib.sh, init-sh/lib.sh.usermode: merge
	  back 0.15-17mdk in CVS

2000-05-17 15:38  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: custom.sh, level4.sh, level5.sh: [no log message]

2000-05-17 12:45  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: custom.sh, level4.sh, level5.sh: [no log message]

2000-05-03 14:39  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec, init-sh/custom.sh, init-sh/level4.sh,
	  init-sh/level5.sh, init-sh/lib.sh: [no log message]

2000-04-25 14:04  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec, Makefile: [no log message]

2000-04-25 14:01  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* Makefile, msec.spec, init-sh/lib.sh: [no log message]

2000-04-24 23:01  Pixel <pixel@mandrakesoft.com>

	* msec.spec, conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3,
	  conf/perm.4: no_comment

2000-04-19 13:04  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* Makefile, msec.spec, init-sh/lib.sh: [no log message]

2000-04-19 12:06  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/lib.sh, msec.spec: [no log message]

2000-04-19 11:54  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: custom.sh, level0.sh, level1.sh, level2.sh, level3.sh,
	  level4.sh, level5.sh, lib.sh: [no log message]

2000-04-18 18:30  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/custom.sh, src/msec_find/find.c, msec.spec: [no log
	  message]

2000-04-18 16:36  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: level3.sh, level4.sh, level5.sh: [no log message]

2000-04-17 18:19  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec: [no log message]

2000-04-17 17:25  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec, src/msec_find/find.c: [no log message]

2000-04-17 16:27  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec, conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3,
	  conf/perm.4, conf/perm.5, init-sh/file_perm.sh: [no log message]

2000-04-17 16:14  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec, init-sh/file_perm.sh: [no log message]

2000-04-17 16:07  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* conf/perm.5: [no log message]

2000-04-17 15:55  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* Makefile, msec.spec, doc/msec.8, doc/msec.lyx: [no log message]

2000-04-14 18:35  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: custom.sh, level0.sh, level1.sh, level2.sh, level3.sh,
	  level4.sh, level5.sh: [no log message]

2000-03-22 18:44  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* README, init-sh/custom.sh: [no log message]

2000-03-22 18:37  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* README, init-sh/custom.sh, init-sh/level5.sh, init-sh/lib.sh,
	  Makefile, msec.spec: [no log message]

2000-03-22 17:59  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* conf/perm.5: [no log message]

2000-03-19 19:41  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* cron-sh/security.sh, src/msec_find/find.c: [no log message]

2000-03-19 17:10  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec, cron-sh/security.sh, src/msec_find/find.c: [no log
	  message]

2000-03-09 14:52  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec: [no log message]

2000-03-09 14:42  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec, init-sh/custom.sh, src/msec_find/find.c: [no log
	  message]

2000-03-08 15:44  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* Makefile, msec.spec, src/msec_find/Makefile,
	  src/promisc_check/Makefile: [no log message]

2000-03-08 15:25  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec, Makefile: [no log message]

2000-03-08 15:19  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* Makefile, init-sh/msec: [no log message]

2000-03-08 15:01  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* Makefile, msec.spec, cron-sh/security.sh, init-sh/custom.sh,
	  init-sh/level4.sh, init-sh/level5.sh, init-sh/msec,
	  src/msec_find/Makefile, src/msec_find/find.c: [no log message]

2000-03-07 18:03  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec, init-sh/msec: [no log message]

2000-03-07 17:50  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* Makefile, msec.spec, init-sh/level0.sh: [no log message]

2000-03-07 17:45  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* Makefile, conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3,
	  conf/perm.4, conf/perm.5, conf/server.4, conf/server.5,
	  cron-sh/promisc_check.sh, cron-sh/security.sh, init-sh/custom.sh,
	  init-sh/init.sh, init-sh/level0.sh, init-sh/level1.sh,
	  init-sh/level2.sh, init-sh/level3.sh, init-sh/level4.sh,
	  init-sh/level5.sh, init-sh/lib.sh, init-sh/msec, init-sh/perm.0,
	  init-sh/perm.1, init-sh/perm.2, init-sh/perm.3, init-sh/perm.4,
	  init-sh/perm.5, init-sh/server.4, init-sh/server.5: [no log
	  message]

2000-03-07 15:39  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* cron-sh/security_check.sh, init-sh/perm.4, init-sh/perm.5: [no
	  log message]

2000-02-17 12:29  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: perm.4, perm.5: [no log message]

2000-02-17 11:07  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: perm.4, perm.5: [no log message]

2000-01-21 01:46  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/grpuser.sh: [no log message]

2000-01-18 09:57  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec: [no log message]

2000-01-13 10:08  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec, init-sh/custom.sh: [no log message]

2000-01-06 15:27  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec, cron-sh/security.sh, init-sh/level3.sh,
	  init-sh/level4.sh, init-sh/level5.sh: [no log message]

2000-01-06 14:35  Camille Bégnis <camille@mandrakesoft.com>

	* doc/: msec.lyx, msec.ps: re-mistake...

2000-01-06 14:24  Camille Bégnis <camille@mandrakesoft.com>

	* doc/: msec.lyx, msec.ps: Added friendly level names Corrected a
	  mistake

2000-01-06 14:14  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/level0.sh, msec.spec: [no log message]

2000-01-04 14:10  Camille Bégnis <camille@mandrakesoft.com>

	* doc/: msec.lyx, msec.ps: Added "root shutdown" feature.

2000-01-04 13:37  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* doc/security.txt, init-sh/custom.sh, msec.spec: [no log message]

2000-01-04 11:25  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: level0.sh, perm.0, perm.1, perm.2, perm.3, perm.4,
	  perm.5: [no log message]

2000-01-03 11:41  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: level0.sh, level1.sh, level2.sh, level3.sh, level4.sh,
	  level5.sh: [no log message]

1999-12-29 14:24  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec: [no log message]

1999-12-29 14:21  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* Makefile, msec.spec: "Seethechangelog"

1999-12-29 14:18  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* doc/grpuser.8: [no log message]

1999-12-28 19:28  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* doc/: msec.lyx, msec.ps: "Seethechangelog"

1999-12-28 19:15  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* doc/: grpuser.8, grpuser.8.bz2, init.sh.8, init.sh.8.bz2, msec.8,
	  msec.8.bz2: "Seethechangelog"

1999-12-28 17:13  Camille Bégnis <camille@mandrakesoft.com>

	* doc/: grpuser.8.bz2, init.sh.8.bz2, msec.8.bz2: Added man pages

1999-12-28 16:32  Camille Bégnis <camille@mandrakesoft.com>

	* doc/msec.lyx: Added latest enhancement: mail warning

1999-12-28 09:47  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/level3.sh: [no log message]

1999-12-27 18:03  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec: [no log message]

1999-12-27 17:31  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* cron-sh/: diff_check.sh, security.sh: [no log message]

1999-12-27 17:28  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/level0.sh, init-sh/level1.sh, init-sh/level2.sh,
	  init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh,
	  msec.spec, cron-sh/security_check.sh: [no log message]

1999-12-27 17:24  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* cron-sh/diff_check.sh, cron-sh/security.sh, init-sh/perm.0,
	  init-sh/perm.1, init-sh/perm.2, init-sh/perm.3, init-sh/perm.4,
	  init-sh/perm.5: [no log message]

1999-12-24 10:32  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec: [no log message]

1999-12-23 14:05  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* cron-sh/diff_check.sh:
	  typo

1999-12-22 10:27  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: perm.0, perm.1, perm.2, perm.3, perm.4, perm.5: [no log
	  message]

1999-12-22 03:41  Camille Bégnis <camille@mandrakesoft.com>

	* doc/msec.lyx: Added comprehensive level descriptions

1999-12-21 23:17  Pixel <pixel@mandrakesoft.com>

	* msec.spec, init-sh/perm.4: no_comment

1999-12-21 23:10  Pixel <pixel@mandrakesoft.com>

	* msec.spec, init-sh/level1.sh, init-sh/level2.sh,
	  init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh:
	  no_comment

1999-12-21 23:02  Pixel <pixel@mandrakesoft.com>

	* msec.spec, init-sh/lib.sh: no_comment

1999-12-20 19:28  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/level5.sh: [no log message]

1999-12-20 19:03  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec, init-sh/lib.sh: [no log message]

1999-12-20 18:14  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: perm.1, perm.2, perm.3: [no log message]

1999-12-20 17:56  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* Makefile, msec.spec, cron-sh/security.sh,
	  cron-sh/security_check.sh: [no log message]

1999-12-20 12:52  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* cron-sh/security.sh, init-sh/grpuser.sh: [no log message]

1999-12-20 09:34  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* Makefile, init-sh/level4.sh, init-sh/level5.sh: [no log message]

1999-12-20 09:06  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: perm.0, perm.1, perm.2, perm.3, perm.4, perm.5: [no log
	  message]

1999-12-20 00:51  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: lib.sh, perm.0, perm.1, perm.2, perm.3, perm.4, perm.5:
	  [no log message]

1999-12-19 23:38  Pixel <pixel@mandrakesoft.com>

	* init-sh/lib.sh: [no log message]

1999-12-19 23:14  Pixel <pixel@mandrakesoft.com>

	* init-sh/: lib.sh: [no log message]

1999-12-19 23:09  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: level1.sh, level2.sh: [no log message]

1999-12-19 23:01  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* Makefile, cron-sh/security.sh, init-sh/security.conf: [no log
	  message]

1999-12-19 22:53  Pixel <pixel@mandrakesoft.com>

	* init-sh/lib.sh: [no log message]

1999-12-19 22:36  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* cron-sh/security_check.sh: [no log message]

1999-12-19 22:12  Pixel <pixel@mandrakesoft.com>

	* init-sh/lib.sh: [no log message]

1999-12-19 21:44  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* cron-sh/: diff_check.sh, security_check.sh: [no log message]

1999-12-19 21:19  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* cron-sh/find.sh, cron-sh/security.sh, init-sh/custom.sh,
	  init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh: [no log
	  message]

1999-12-19 21:02  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* cron-sh/diff_check.sh, cron-sh/find.sh,
	  cron-sh/security_check.sh, init-sh/security.conf: [no log
	  message]

1999-12-19 01:35  Pixel <pixel@mandrakesoft.com>

	* msec.spec: no_comment

1999-12-19 01:30  Pixel <pixel@mandrakesoft.com>

	* msec.spec, Makefile: no_comment

1999-12-18 17:08  Pixel <pixel@mandrakesoft.com>

	* msec.spec, init-sh/init.sh, init-sh/lib.sh: no_comment

1999-12-17 16:22  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* Makefile, cron-sh/diff_check.sh, cron-sh/security_check.sh,
	  init-sh/lib.sh, init-sh/security.conf: [no log message]

1999-12-17 15:17  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* cron-sh/security_check.sh: [no log message]

1999-12-16 23:21  Camille Bégnis <camille@mandrakesoft.com>

	* doc/msec.lyx: Added level 0 minor changes

1999-12-16 18:48  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec, init-sh/level0.sh, init-sh/level1.sh,
	  init-sh/level2.sh, init-sh/level3.sh, init-sh/level4.sh,
	  init-sh/level5.sh, init-sh/lib.sh: [no log message]

1999-12-16 17:41  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec, init-sh/level0.sh, init-sh/lib.sh: [no log message]

1999-12-16 17:21  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec: [no log message]

1999-12-16 17:17  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* Makefile, TODO, cron-sh/diff_check.sh, cron-sh/security_check.sh,
	  init-sh/grpuser.sh, init-sh/level1.sh, init-sh/level2.sh,
	  init-sh/lib.sh, init-sh/group.conf: [no log message]

1999-12-16 11:37  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: level1.sh, level2.sh, lib.sh: [no log message]

1999-12-16 11:32  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/grpuser.sh: [no log message]

1999-12-16 03:07  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* doc/msec.lyx: [no log message]

1999-12-15 19:04  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/level0.sh: [no log message]

1999-12-15 18:35  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* TODO, init-sh/lib.sh: [no log message]

1999-12-15 18:19  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* Makefile, init-sh/grpuser, init-sh/lib.sh, init-sh/group.conf,
	  init-sh/grpuser.sh, TODO: [no log message]

1999-12-15 12:13  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/level0.sh: [no log message]

1999-12-15 12:05  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: level0.sh, level1.sh, level2.sh, level3.sh, level4.sh,
	  level5.sh: [no log message]

1999-12-15 11:48  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: level0.sh, level1.sh, level2.sh, level3.sh, level4.sh,
	  level5.sh, lib.sh: [no log message]

1999-12-15 10:39  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* cron-sh/diff_check.sh, cron-sh/security_check.sh,
	  init-sh/custom.sh, init-sh/level4.sh, init-sh/level5.sh,
	  init-sh/lib.sh: [no log message]

1999-12-15 09:10  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* doc/security.txt, init-sh/level2.sh, init-sh/perm.1,
	  init-sh/perm.2, init-sh/perm.4, init-sh/perm.5: [no log message]

1999-12-14 18:24  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec, init-sh/level1.sh, init-sh/level2.sh, init-sh/lib.sh:
	  [no log message]

1999-12-14 17:35  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: level1.sh, level2.sh, lib.sh: [no log message]

1999-12-14 14:40  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/lib.sh: [no log message]

1999-12-14 14:10  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* doc/security.txt, msec.spec, init-sh/level0.sh,
	  init-sh/level1.sh, init-sh/level2.sh, init-sh/lib.sh: [no log
	  message]

1999-12-13 12:45  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* cron-sh/diff_check.sh, msec.spec: [no log message]

1999-12-10 16:28  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: level0.sh, level2.sh, level3.sh, level4.sh, level5.sh:
	  [no log message]

1999-12-10 16:22  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec, init-sh/custom.sh: [no log message]

1999-12-09 18:17  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec: [no log message]

1999-12-09 18:16  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* Makefile, cron-sh/diff_check.sh, cron-sh/promisc_check.sh,
	  cron-sh/security_check.sh, init-sh/custom.sh,
	  init-sh/file_perm.sh, init-sh/grpuser, init-sh/init.sh,
	  init-sh/level0.sh, init-sh/level1.sh, init-sh/level2.sh,
	  init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh,
	  init-sh/lib.sh:

	  Should really be stable now.

1999-12-09 17:44  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: level0.sh, level1.sh, level2.sh, lib.sh: [no log
	  message]

1999-12-09 17:20  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: level0.sh, perm.0: [no log message]

1999-12-09 16:48  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec: [no log message]

1999-12-09 16:44  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* cron-sh/diff_check.sh, cron-sh/promisc_check.sh,
	  cron-sh/security_check.sh, init-sh/custom.sh, init-sh/level4.sh,
	  init-sh/lib.sh, msec.spec: [no log message]

1999-12-09 15:48  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* cron-sh/diff_check.sh, cron-sh/promisc_check.sh,
	  cron-sh/security_check.sh, init-sh/lib.sh: [no log message]

1999-12-09 11:20  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* cron-sh/promisc_check.sh: [no log message]

1999-12-09 11:05  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* cron-sh/: diff_check.sh, security_check.sh: [no log message]

1999-12-08 18:16  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* cron-sh/: diff_check.sh, promisc_check.sh: [no log message]

1999-12-08 17:13  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec, cron-sh/security_check.sh: [no log message]

1999-12-08 15:55  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec: [no log message]

1999-12-08 13:58  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/lib.sh: [no log message]

1999-12-08 13:49  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/lib.sh: [no log message]

1999-12-08 13:44  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: custom.sh, level5.sh: [no log message]

1999-12-08 13:08  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* cron-sh/diff_check.sh, init-sh/level5.sh: [no log message]

1999-12-08 13:04  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec, cron-sh/diff_check.sh, cron-sh/promisc_check.sh,
	  cron-sh/security_check.sh, init-sh/lib.sh: [no log message]

1999-12-08 13:00  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec, cron-sh/diff_check.sh, cron-sh/file_check.sh,
	  cron-sh/security_check.sh, init-sh/custom.sh, init-sh/level1.sh,
	  init-sh/level2.sh, init-sh/level3.sh, init-sh/level4.sh,
	  init-sh/level5.sh, init-sh/lib.sh: [no log message]

1999-12-08 11:24  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/file_perm.sh: [no log message]

1999-12-08 11:04  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* msec.spec, init-sh/file_perm.sh, init-sh/level3.sh,
	  init-sh/level4.sh, init-sh/level5.sh: [no log message]

1999-12-08 05:47  axalon

	* cron-sh/security_check.sh: Handle usernames longer than 8 chars
	  uses ls -n and moves a couple $1 to $3 and such blah blah

1999-12-08 03:49  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* Makefile, msec.spec: "See_The_Changelog"

1999-12-08 03:40  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* Makefile, msec.spec, doc/msec.spec: "See_The_Changelog"

1999-12-08 03:33  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* Makefile: "See_The_Changelog"

1999-12-08 03:15  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* doc/msec.spec: "See_The_Changelog"

1999-12-08 03:11  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* cron-sh/promisc_check.sh: "See_The_Changelog"

1999-12-08 02:30  axalon

	* cron-sh/file_check.sh:
	  Fix the typo

1999-12-06 19:11  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* doc/msec.spec, init-sh/custom.sh, init-sh/level2.sh,
	  init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh: [no log
	  message]

1999-12-06 19:08  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* doc/msec.spec: [no log message]

1999-12-06 19:05  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* cron-sh/file_check.sh, init-sh/level1.sh, init-sh/level2.sh,
	  init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh,
	  init-sh/lib.sh, cron-sh/security_check.sh: [no log message]

1999-12-06 10:01  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* cron-sh/file_check.sh, init-sh/perm.1, init-sh/perm.2,
	  init-sh/perm.3, init-sh/perm.4, init-sh/perm.5:

	  Added permission for /var/log/ and it's subdirectory

1999-12-03 15:05  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: level1.sh, level2.sh, level3.sh, level4.sh, level5.sh:

	  Added /usr/games in PATH

1999-12-01 17:30  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* doc/msec.spec, init-sh/level1.sh, init-sh/level2.sh,
	  init-sh/lib.sh: [no log message]

1999-12-01 16:52  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* doc/msec.spec: [no log message]

1999-12-01 16:51  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* doc/msec.spec, init-sh/file_perm.sh, init-sh/level1.sh,
	  init-sh/level2.sh, init-sh/lib.sh:

	  Ok now add the user list to audio group ( level 1 & 2 ).  lib.sh
	  delete user list from audio group

1999-12-01 15:55  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: level1.sh, level2.sh, level3.sh:
	  Bug fix

1999-12-01 12:40  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* doc/msec.spec: [no log message]

1999-12-01 12:39  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: level4.sh, lib.sh:

	  Now preserve file indentation

1999-12-01 12:10  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: level4.sh, lib.sh: [no log message]

1999-12-01 12:02  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* doc/msec.spec, init-sh/level1.sh, init-sh/level2.sh,
	  init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh,
	  init-sh/lib.sh:

	  Bug fix

1999-11-30 16:47  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* cron-sh/file_check.sh, init-sh/level1.sh, init-sh/level2.sh,
	  init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh:

	  Many cron security check added.  Now report what it does ( msec
	  ).

1999-11-29 16:06  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* Makefile, doc/msec.spec, init-sh/custom.sh, init-sh/init.sh,
	  init-sh/lib.sh: [no log message]

1999-11-29 15:18  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* init-sh/: custom.sh, init.sh, level1.sh, level2.sh, level3.sh,
	  level4.sh, level5.sh, lib.sh:

	  Uhh custom security will always be a good idea.

1999-11-29 11:09  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* doc/msec.spec, init-sh/level1.sh, init-sh/level2.sh,
	  init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh,
	  init-sh/lib.sh:

	  Fix a few bug.

1999-11-26 18:23  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* doc/msec.spec: [no log message]

1999-11-26 01:21  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* doc/msec.spec, init-sh/level1.sh, init-sh/level2.sh,
	  init-sh/level3.sh:

	  msec.spec:  updated revision / changelog.  level[12].sh: removed
	  some unused code.  level3.sh: fixed a bug

1999-11-25 21:24  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* doc/msec.spec, init-sh/level4.sh, init-sh/level5.sh:

	  level[45].sh : use the new --msec option when calling chkconfig
	  msec.spec : updated release version number

1999-11-25 20:44  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* AUTHORS, Makefile, COPYING, README, cron-sh/Makefile,
	  cron-sh/file_check.sh, cron-sh/promisc_check.sh, doc/msec.spec,
	  doc/security.txt, init-sh/file_perm.sh, init-sh/init.sh,
	  init-sh/level1.sh, init-sh/level2.sh, init-sh/level3.sh,
	  init-sh/level4.sh, init-sh/level5.sh, init-sh/lib.sh,
	  init-sh/server.5, init-sh/grpuser, init-sh/perm.1,
	  init-sh/perm.2, init-sh/perm.3, init-sh/perm.4, init-sh/perm.5,
	  init-sh/server.4, src/promisc_check/Makefile,
	  src/promisc_check/promisc_check.c: Initial revision

1999-11-25 20:44  Yoann Vandoorselaere <yoann@mandrakesoft.com>

	* AUTHORS, Makefile, COPYING, README, cron-sh/Makefile,
	  cron-sh/file_check.sh, cron-sh/promisc_check.sh, doc/msec.spec,
	  doc/security.txt, init-sh/file_perm.sh, init-sh/init.sh,
	  init-sh/level1.sh, init-sh/level2.sh, init-sh/level3.sh,
	  init-sh/level4.sh, init-sh/level5.sh, init-sh/lib.sh,
	  init-sh/server.5, init-sh/grpuser, init-sh/perm.1,
	  init-sh/perm.2, init-sh/perm.3, init-sh/perm.4, init-sh/perm.5,
	  init-sh/server.4, src/promisc_check/Makefile,
	  src/promisc_check/promisc_check.c: Updated source tree