Skip to content

Commit 512a301

Browse files
committed
Initial commit
0 parents  commit 512a301

File tree

793 files changed

+64480
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

793 files changed

+64480
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
shadow*
2+
gshadow*
3+
ssh/*key
4+
chrony.keys
5+
pki/*.key
6+
pki/nginx/private/

.pwd.lock

Whitespace-only changes.

.updated

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
This file was created by systemd-update-done. Its only
2+
purpose is to hold a timestamp of the time this directory
3+
was updated. See systemd-update-done.service(8).

DIR_COLORS

Lines changed: 209 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,209 @@
1+
# Configuration file for dircolors, a utility to help you set the
2+
# LS_COLORS environment variable used by GNU ls with the --color option.
3+
4+
# This file goes in the /etc directory, and must be world readable.
5+
# You can copy this file to .dir_colors in your $HOME directory to override
6+
# the system defaults.
7+
8+
# Copyright (C) 1996-2016 Free Software Foundation, Inc.
9+
# Copying and distribution of this file, with or without modification,
10+
# are permitted provided the copyright notice and this notice are preserved.
11+
12+
# The keywords OPTIONS and EIGHTBIT (honored by the slackware version of
13+
# dircolors) are recognized but ignored. For compatibility reasons, the
14+
# pattern "^COLOR.*none" is recognized as a way to disable colorization.
15+
# See https://bugzilla.redhat.com/1349579 for details.
16+
17+
# Below are TERM entries, which can be a glob patterns, to match
18+
# against the TERM environment variable to determine if it is colorizable.
19+
TERM Eterm
20+
TERM ansi
21+
TERM color-xterm
22+
TERM con[0-9]*x[0-9]*
23+
TERM cons25
24+
TERM console
25+
TERM cygwin
26+
TERM dtterm
27+
TERM eterm-color
28+
TERM gnome
29+
TERM gnome-256color
30+
TERM hurd
31+
TERM jfbterm
32+
TERM konsole
33+
TERM kterm
34+
TERM linux
35+
TERM linux-c
36+
TERM mach-color
37+
TERM mach-gnu-color
38+
TERM mlterm
39+
TERM putty
40+
TERM putty-256color
41+
TERM rxvt*
42+
TERM screen*
43+
TERM st
44+
TERM st-256color
45+
TERM terminator
46+
TERM tmux*
47+
TERM vt100
48+
TERM xterm*
49+
50+
# Below are the color init strings for the basic file types. A color init
51+
# string consists of one or more of the following numeric codes:
52+
# Attribute codes:
53+
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
54+
# Text color codes:
55+
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
56+
# Background color codes:
57+
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
58+
#NORMAL 00 # no color code at all
59+
#FILE 00 # regular file: use no color at all
60+
RESET 0 # reset to "normal" color
61+
DIR 01;34 # directory
62+
LINK 01;36 # symbolic link. (If you set this to 'target' instead of a
63+
# numerical value, the color is as for the file pointed to.)
64+
MULTIHARDLINK 00 # regular file with more than one link
65+
FIFO 40;33 # pipe
66+
SOCK 01;35 # socket
67+
DOOR 01;35 # door
68+
BLK 40;33;01 # block device driver
69+
CHR 40;33;01 # character device driver
70+
ORPHAN 40;31;01 # symlink to nonexistent file, or non-stat'able file ...
71+
MISSING 01;05;37;41 # ... and the files they point to
72+
SETUID 37;41 # file that is setuid (u+s)
73+
SETGID 30;43 # file that is setgid (g+s)
74+
CAPABILITY 30;41 # file with capability
75+
STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w)
76+
OTHER_WRITABLE 34;42 # dir that is other-writable (o+w) and not sticky
77+
STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable
78+
79+
# This is for files with execute permission:
80+
EXEC 01;32
81+
82+
# List any file extensions like '.gz' or '.tar' that you would like ls
83+
# to colorize below. Put the extension, a space, and the color init string.
84+
# (and any comments you want to add after a '#')
85+
86+
# If you use DOS-style suffixes, you may want to uncomment the following:
87+
#.cmd 01;32 # executables (bright green)
88+
#.exe 01;32
89+
#.com 01;32
90+
#.btm 01;32
91+
#.bat 01;32
92+
# Or if you want to colorize scripts even if they do not have the
93+
# executable bit actually set.
94+
#.sh 01;32
95+
#.csh 01;32
96+
97+
# archives or compressed (bright red)
98+
.tar 01;31
99+
.tgz 01;31
100+
.arc 01;31
101+
.arj 01;31
102+
.taz 01;31
103+
.lha 01;31
104+
.lz4 01;31
105+
.lzh 01;31
106+
.lzma 01;31
107+
.tlz 01;31
108+
.txz 01;31
109+
.tzo 01;31
110+
.t7z 01;31
111+
.zip 01;31
112+
.z 01;31
113+
.Z 01;31
114+
.dz 01;31
115+
.gz 01;31
116+
.lrz 01;31
117+
.lz 01;31
118+
.lzo 01;31
119+
.xz 01;31
120+
.bz2 01;31
121+
.bz 01;31
122+
.tbz 01;31
123+
.tbz2 01;31
124+
.tz 01;31
125+
.deb 01;31
126+
.rpm 01;31
127+
.jar 01;31
128+
.war 01;31
129+
.ear 01;31
130+
.sar 01;31
131+
.rar 01;31
132+
.alz 01;31
133+
.ace 01;31
134+
.zoo 01;31
135+
.cpio 01;31
136+
.7z 01;31
137+
.rz 01;31
138+
.cab 01;31
139+
140+
# image formats
141+
.jpg 01;35
142+
.jpeg 01;35
143+
.gif 01;35
144+
.bmp 01;35
145+
.pbm 01;35
146+
.pgm 01;35
147+
.ppm 01;35
148+
.tga 01;35
149+
.xbm 01;35
150+
.xpm 01;35
151+
.tif 01;35
152+
.tiff 01;35
153+
.png 01;35
154+
.svg 01;35
155+
.svgz 01;35
156+
.mng 01;35
157+
.pcx 01;35
158+
.mov 01;35
159+
.mpg 01;35
160+
.mpeg 01;35
161+
.m2v 01;35
162+
.mkv 01;35
163+
.webm 01;35
164+
.ogm 01;35
165+
.mp4 01;35
166+
.m4v 01;35
167+
.mp4v 01;35
168+
.vob 01;35
169+
.qt 01;35
170+
.nuv 01;35
171+
.wmv 01;35
172+
.asf 01;35
173+
.rm 01;35
174+
.rmvb 01;35
175+
.flc 01;35
176+
.avi 01;35
177+
.fli 01;35
178+
.flv 01;35
179+
.gl 01;35
180+
.dl 01;35
181+
.xcf 01;35
182+
.xwd 01;35
183+
.yuv 01;35
184+
.cgm 01;35
185+
.emf 01;35
186+
187+
# http://wiki.xiph.org/index.php/MIME_Types_and_File_Extensions
188+
.ogv 01;35
189+
.ogx 01;35
190+
191+
# audio formats
192+
.aac 01;36
193+
.au 01;36
194+
.flac 01;36
195+
.m4a 01;36
196+
.mid 01;36
197+
.midi 01;36
198+
.mka 01;36
199+
.mp3 01;36
200+
.mpc 01;36
201+
.ogg 01;36
202+
.ra 01;36
203+
.wav 01;36
204+
205+
# http://wiki.xiph.org/index.php/MIME_Types_and_File_Extensions
206+
.oga 01;36
207+
.opus 01;36
208+
.spx 01;36
209+
.xspf 01;36

0 commit comments

Comments
 (0)