* updated krdc (21.12.1 -> 21.12.2), untested
[t2-trunk.git] / package / base / stone / parse-config
blobcce2a238290726a7c472ee5cfef00f6cbfd55bf2
1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # T2 SDE: package/*/stone/parse-config
3 # Copyright (C) 2005 - 2021 The T2 SDE Project
4
5 # This Copyright note is generated by scripts/Create-CopyPatch,
6 # more information can be found in the files COPYING and README.
7
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License version 2.
10 # --- T2-COPYRIGHT-NOTE-END ---
12 if pkginstalled stone; then
13         # stone module install helper
14         #
15         install_stone_module() {
16                 local file="$1" stoned=etc/stone.d
17                 local mfile="${file##*/}"
18                 mfile=${mfile#stone_}
20                 echo "Installing $mfile to /$stoned/ ..."
21                 cp -vf $file $root/$stoned/$mfile
22         }
24         for x in $( ls -1 $confdir/stone_*.sh 2> /dev/null ) ; do
25                 hook_add postinstall 3 "install_stone_module '$x'"
26         done