blob: 8a7098f7d1cc4498c5aeb76d42cc33ba7ebf087e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
# we need to have our modprobe.d files with .conf suffix
for i in /etc/modprobe.d/*; do
# ignore files that does not exist (i.e if modprobe.d is empty)
[ -r "$i" ] || continue
# ignore files that has an extention
case "$i" in
*.*) continue;;
esac
# append extension
mv "$i" "$i".conf
done
if [ -e /etc/group ] && ! grep -q '^shadow:' /etc/group; then
addgroup -S -g 42 shadow
fi
|