blob: f931592ef417f970f9f946206fbeb943ff148fee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
set -e
if [ ! -e .gitignore ]; then
cat >.gitignore <<EOF
*~
# new and old versions of conffiles, stored by dpkg
*.dpkg-*
# mount(8) records system state here, no need to keep these in git
blkid.tab
blkid.tab.old
# some other files in /etc that typically do not need to be tracked
ld.so.cache
mtab
.pwd.lock
network/run
adjtime
EOF
fi
|