-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtune_crypt.sh
executable file
·66 lines (54 loc) · 1.84 KB
/
tune_crypt.sh
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
#!/bin/bash
if [ ! -r ./tune.crypt ]; then
echo "Error: file 'tune.crypt' does not exists or missing permissions" >&2
exit 1
fi
if [ -z "$(cat ./tune.crypt)" ]; then
echo "Error: file 'tune.crypt' is empty" >&2
exit 1
fi
if [ ! -f "./skuf_src/init(untuned)" ]; then
echo "Error: file 'skuf_src/init(untuned)' does not exists" >&2
exit 1
fi
if [ ! -f "./skuf_src/kinit(untuned)" ]; then
echo "Error: file 'skuf_src/kinit(untuned)' does not exists" >&2
exit 1
fi
: > ./.tune_crypt_pattern_enc
: > ./.tune_crypt_pattern_dec
[ -f ./skuf_src/init ] || cp -a "./skuf_src/init(untuned)" "./skuf_src/init"
[ -f ./skuf_src/kinit ] || cp -a "./skuf_src/kinit(untuned)" "./skuf_src/kinit"
while read -r pair; do
from="${pair%% *}"
to="${pair##* }"
if [ -z "$from" ] || [ -z "$to" ]; then
echo "Missing pair!" >&2
exit 1
fi
case "${from}${to}" in
*[\^:]*)
echo "Characters '^' and ':' are forbidden to use" >&2
continue
;;
esac
echo "$from -> $to"
cat <<EOF >> ./.tune_crypt_pattern_enc
sambaoptsx="\${sambaoptsx//$from/^}" # SKUF_ENC_TUNED #
sambaoptsx="\${sambaoptsx//$to/$from}" # SKUF_ENC_TUNED #
sambaoptsx="\${sambaoptsx//^/$to}" # SKUF_ENC_TUNED #
EOF
cat <<EOF >> ./.tune_crypt_pattern_dec
_sambaopts="\${_sambaopts//$to/^}" # SKUF_DEC_TUNED #
_sambaopts="\${_sambaopts//$from/$to}" # SKUF_DEC_TUNED #
_sambaopts="\${_sambaopts//^/$from}" # SKUF_DEC_TUNED #
EOF
done < ./tune.crypt
sed -i "/# SKUF_ENC_TUNED #/d" ./skuf_src/kinit
sed -i "/# SKUF_DEC_TUNED #/d" ./skuf_src/init
sed -i '/# SKUF_ENC_TUNE #/r .tune_crypt_pattern_enc' ./skuf_src/kinit
sed -i '/# SKUF_DEC_TUNE #/r .tune_crypt_pattern_dec' ./skuf_src/init
rm ./.tune_crypt_pattern_enc
rm ./.tune_crypt_pattern_dec
echo "Done."
# vim: set ft=sh ts=4 sw=4 et: