blob: f7c8db83c417302a69b89db21eea4502b688c044 (
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
addgroup -S -g 42 shadow 2>/dev/null
exit 0
|