Initial commit

This commit is contained in:
Кодорвань
2026-03-17 14:49:10 +05:00
commit d507541b25
140 changed files with 1017 additions and 0 deletions

17
install.sh Normal file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
if [ -d author/project ]; then
mv author/project author/sunf
fi
if [ -d author ]; then
mv author kodorvan
fi
for i in kodorvan/sunf/system/settings/*.sample; do
echo $i;
if [ ! -f "${i/.sample/}" ]; then
cp "$i" "${i/.sample/}";
echo ${i/.sample/};
fi
done