blob: 319d215b7b37d2eec3368be5390256a88ce6d995 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/bash
#
# script for converting simplepkg templates
# to the 0.5 own-folder format
#
cwd="/etc/simplepkg"
cd $cwd
for file in `ls *.template`; do
cd $cwd
template="`echo $file | cut -d . -f 1`"
mkdir templates/$template
mv $template.d templates/$template/
mv $template.s templates/$templates/
mv $template.template templates/$template/
cd templates/$template/$template.s
# optional step
# if [ "$template" != "vserver" ]; then
# ln -sf ../../../defaults/templatesvserver/vserver.s/vserver.sh
# fi
done
|