From c0f79397dd75e03a7a40303f82926e8187697d07 Mon Sep 17 00:00:00 2001 From: M.Gergo Date: Fri, 8 Mar 2019 23:32:47 +0100 Subject: Rev: 4455 --- .../config/main-config.php.sulix | 68 ++++++++ .../mayor-installer-sulix/config/main.conf.sulix | 70 ++++++++ .../config/menu/parent/menu-hu_HU.php.sulix | 7 + .../config/menu/private/menu-hu_HU.php.sulix | 14 ++ .../config/menu/public/menu-hu_HU.php.sulix | 18 +++ .../config/module-naplo/config-pl.php.sulix | 179 +++++++++++++++++++++ .../config/module-naplo/config-vmg.php.sulix | 159 ++++++++++++++++++ .../config/module-naplo/config.php.sulix | 65 ++++++++ .../config/module-portal/config.php.sulix | 11 ++ .../config/parent-conf.php.sulix | 23 +++ .../config/private-conf.php.sulix | 76 +++++++++ .../config/public-conf.php.sulix | 21 +++ .../config/skin-classic/config.php.sulix | 6 + .../config/skin-classic/naplo-config.php.sulix | 14 ++ .../config/skin-sulix/config.php.sulix | 7 + .../config/skin-teszt/config.php.sulix | 21 +++ .../config/skin-winter/config.php.sulix | 6 + .../devel/copy-sulixconfig.sh | 4 + .../mayor-installer-sulix/devel/example2sulix.sh | 8 + .../install/install.d/05env.sh | 17 ++ .../install/install.d/15createconfig.sh | 68 ++++++++ .../install/install.d/35createdatabases.sh | 114 +++++++++++++ .../install/install.d/40binary.sh | 25 +++ .../install/install.d/45intezmeny.sh | 68 ++++++++ .../install/install.d/47tanev.sh | 60 +++++++ .../install/install.d/50linker.sh | 53 ++++++ .../install/install.d/55tex.sh | 13 ++ .../install/install.d/60portal.sh | 90 +++++++++++ .../install/mayor-installer-sulix/ldap/group.lidf | 32 ++++ .../install/mayor-installer-sulix/ldap/user.ldif | 49 ++++++ mayor-orig/mayor-installer-sulix/install/setup | 38 +++++ .../log/mayor-installer-sulix.rev | 1 + .../skin/classic/module-portal/config.php.sulix | 10 ++ 33 files changed, 1415 insertions(+) create mode 100644 mayor-orig/mayor-installer-sulix/config/main-config.php.sulix create mode 100644 mayor-orig/mayor-installer-sulix/config/main.conf.sulix create mode 100644 mayor-orig/mayor-installer-sulix/config/menu/parent/menu-hu_HU.php.sulix create mode 100644 mayor-orig/mayor-installer-sulix/config/menu/private/menu-hu_HU.php.sulix create mode 100644 mayor-orig/mayor-installer-sulix/config/menu/public/menu-hu_HU.php.sulix create mode 100644 mayor-orig/mayor-installer-sulix/config/module-naplo/config-pl.php.sulix create mode 100644 mayor-orig/mayor-installer-sulix/config/module-naplo/config-vmg.php.sulix create mode 100644 mayor-orig/mayor-installer-sulix/config/module-naplo/config.php.sulix create mode 100644 mayor-orig/mayor-installer-sulix/config/module-portal/config.php.sulix create mode 100644 mayor-orig/mayor-installer-sulix/config/parent-conf.php.sulix create mode 100644 mayor-orig/mayor-installer-sulix/config/private-conf.php.sulix create mode 100644 mayor-orig/mayor-installer-sulix/config/public-conf.php.sulix create mode 100644 mayor-orig/mayor-installer-sulix/config/skin-classic/config.php.sulix create mode 100644 mayor-orig/mayor-installer-sulix/config/skin-classic/naplo-config.php.sulix create mode 100644 mayor-orig/mayor-installer-sulix/config/skin-sulix/config.php.sulix create mode 100644 mayor-orig/mayor-installer-sulix/config/skin-teszt/config.php.sulix create mode 100644 mayor-orig/mayor-installer-sulix/config/skin-winter/config.php.sulix create mode 100644 mayor-orig/mayor-installer-sulix/devel/copy-sulixconfig.sh create mode 100644 mayor-orig/mayor-installer-sulix/devel/example2sulix.sh create mode 100755 mayor-orig/mayor-installer-sulix/install/install.d/05env.sh create mode 100755 mayor-orig/mayor-installer-sulix/install/install.d/15createconfig.sh create mode 100755 mayor-orig/mayor-installer-sulix/install/install.d/35createdatabases.sh create mode 100755 mayor-orig/mayor-installer-sulix/install/install.d/40binary.sh create mode 100755 mayor-orig/mayor-installer-sulix/install/install.d/45intezmeny.sh create mode 100755 mayor-orig/mayor-installer-sulix/install/install.d/47tanev.sh create mode 100755 mayor-orig/mayor-installer-sulix/install/install.d/50linker.sh create mode 100755 mayor-orig/mayor-installer-sulix/install/install.d/55tex.sh create mode 100755 mayor-orig/mayor-installer-sulix/install/install.d/60portal.sh create mode 100644 mayor-orig/mayor-installer-sulix/install/mayor-installer-sulix/ldap/group.lidf create mode 100644 mayor-orig/mayor-installer-sulix/install/mayor-installer-sulix/ldap/user.ldif create mode 100755 mayor-orig/mayor-installer-sulix/install/setup create mode 100644 mayor-orig/mayor-installer-sulix/log/mayor-installer-sulix.rev create mode 100644 mayor-orig/mayor-installer-sulix/www/skin/classic/module-portal/config.php.sulix (limited to 'mayor-orig/mayor-installer-sulix') diff --git a/mayor-orig/mayor-installer-sulix/config/main-config.php.sulix b/mayor-orig/mayor-installer-sulix/config/main-config.php.sulix new file mode 100644 index 00000000..d6c10cfe --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/config/main-config.php.sulix @@ -0,0 +1,68 @@ + array(), + 'startColumn' => array(), + 'startMain' => array(), + 'startToolBar' => array(), + 'html_head' => array() +); + +// A telepített modulok +$INSTALLED_MODULES = array(); +/* +if ($dh = opendir('include/config/')) { + while (($file = readdir($dh)) !== false) { + if (substr($file,0,6)=='module') require('include/config/'.$file); + } + closedir($dh); +} +*/ + +?> \ No newline at end of file diff --git a/mayor-orig/mayor-installer-sulix/config/main.conf.sulix b/mayor-orig/mayor-installer-sulix/config/main.conf.sulix new file mode 100644 index 00000000..bc1b59ab --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/config/main.conf.sulix @@ -0,0 +1,70 @@ +#======================# +# Main # +#======================# + +BASEDIR="/srv/mayor" +WEB_SERVER_USER="wwwrun" +MYSQL_HOST="localhost" +MYSQL_USER="root" +MYSQL_PW="%SQLPW%" + +MYSQL=/usr/bin/mysql +SHELL=/bin/bash + +#======================# +# Update # +#======================# + +UPDATELOG="$BASEDIR/log/update.log" +SQLLOG="$BASEDIR/log/sql-update.log" +REVISION_FILE="$BASEDIR/log/revision" +UPDATEDIR="$BASEDIR/update" +TMPDIR=/tmp/update +LOCKFILE=/var/run/mayor.lock + +MODULES="mayor-base mayor-naplo mayor-portal" +# A wget megléte szükséges a http/tgz alapú frissítés használatához! +HTTP_SERVER=http://mirror.mayor.hu/download + +# Ha a verzió egyedi nevét írjuk be (bubbly, radyx, rypple...), +# akkor saját hatáskörben dől el, hogy mikor váltunk verziót. +# Ha a "current" értéket adjuk meg, akkor a verzióváltás automatikus +VERSION=current + +# Egyes oldalak letiltása +# publicDeny="naplo/tanev/orarend naplo/tanev/masikoldal" + +#======================# +# Backup # +#======================# + +BACKUPDIR="/backup/mayor" + +EXCLUDED_DBS='' + +SAVELDAP=0 +BASEDN='%BASEDN%' +LDAPCONFDIR=/etc/ldap +LDAPDBDIR=/var/lib/ldap + +# Hány napig tartsuk meg a mentéseket? 0 esetén mindet megtartjuk (ajánlott) +BACKUPDAYS=0 + +# Ha a backup file-névben YYYYMMDDHHMM órát és percet is tárolnánk, kommentezzük ki a DATE= változót! +#DATE=`date "+%Y%m%d%H%M"` + + +# Losonci János kiegészítése (losy@agymk.sulinet.hu) +# PREFIX a mentés tgz előtagja + +PREFIX='' + +# RSYNC ha értéke nem 1, nincs rsync +# RHOST rsync távoli gép +# RUSER rsync távoli gép felhasználó +# RPATH rsync távoli gépen levő útvonal a mentéshez + +RSYNC=0 +RUSER='' +RHOST='' +RPATH='' diff --git a/mayor-orig/mayor-installer-sulix/config/menu/parent/menu-hu_HU.php.sulix b/mayor-orig/mayor-installer-sulix/config/menu/parent/menu-hu_HU.php.sulix new file mode 100644 index 00000000..f2d7b459 --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/config/menu/parent/menu-hu_HU.php.sulix @@ -0,0 +1,7 @@ + \ No newline at end of file diff --git a/mayor-orig/mayor-installer-sulix/config/menu/private/menu-hu_HU.php.sulix b/mayor-orig/mayor-installer-sulix/config/menu/private/menu-hu_HU.php.sulix new file mode 100644 index 00000000..62d4913e --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/config/menu/private/menu-hu_HU.php.sulix @@ -0,0 +1,14 @@ +'Felhasználó kezelés','url'=>'index.php?page=session&sub=&f=createAccount&toPolicy=parent') + ); + if ($page=='naplo') unset($NAV[1][ count($NAV[1])-1 ]); // Kérelmek menüpont leszedése + +?> \ No newline at end of file diff --git a/mayor-orig/mayor-installer-sulix/config/menu/public/menu-hu_HU.php.sulix b/mayor-orig/mayor-installer-sulix/config/menu/public/menu-hu_HU.php.sulix new file mode 100644 index 00000000..4572b267 --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/config/menu/public/menu-hu_HU.php.sulix @@ -0,0 +1,18 @@ + 'SuliNet', 'url' => 'http://www.sulinet.hu', 'target' => '_blank'), + ); + + $MENU['auth'] = array(array('txt'=>'Szülői bejelentkezés','url'=>'index.php?page=auth&f=login&toPolicy=parent')); + if ($page!='auth') $NAV[1][] = array('page'=>'auth'); + +?> \ No newline at end of file diff --git a/mayor-orig/mayor-installer-sulix/config/module-naplo/config-pl.php.sulix b/mayor-orig/mayor-installer-sulix/config/module-naplo/config-pl.php.sulix new file mode 100644 index 00000000..ec9b3520 --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/config/module-naplo/config-pl.php.sulix @@ -0,0 +1,179 @@ + százalékos) + define('__JEGYTIPUS_VALTHATO',false); + + // Ha az osztályozónaplóban az alapértelmezett havi bontás helyett féléves bontást szeretnénk + // define('__OSZTALYOZONAPLO_JEGYEK_FELEVENTE', true); + + // Félévi és év végi osztályzatok elrejtése a diákok elől a szemeszter végéig + // define('_OSZTALYZATOK_ELREJTESE', true); + + // Tanév függő beállítások! + if (defined('__TANEV')) { + + if (__TANEV == 2006) { + } elseif (__TANEV == 2007) { + } elseif (__TANEV == 2008) { + // Ha azt akarjuk, hogy a tanárok módosíthassák a tanköreik névsorát... bátor vállalkozás :o) + // define('_TANKOR_MODOSITAS_HATARIDO','2008-09-30'); + } + + // Szülői igazolások száma: félévenként legfeljebb 5 nap + define('__SZULOI_IGAZOLAS_FELEVRE',5); + define('__SZULOI_IGAZOLAS_EVRE',0); + // Szülő által igazolható órák maximális száma: félévenként legfeljebb 14 óra + define('__SZULOI_ORA_IGAZOLAS_FELEVRE',14); + define('__SZULOI_ORA_IGAZOLAS_EVRE',0); + // Osztályfőnöki igazolások száma: évi 3 nap + // Csak ha < 5 igazolatlanja van + define('__OSZTALYFONOKI_IGAZOLAS_FELEVRE',0); + define('__OSZTALYFONOKI_IGAZOLAS_EVRE',5); + define('__OSZTALYFONOKI_ORA_IGAZOLAS_FELEVRE',0); + define('__OSZTALYFONOKI_ORA_IGAZOLAS_EVRE',21); + + // Összeadjuk-e a késések perceit, hogy átváltsuk + define('_KESESI_IDOK_OSSZEADODNAK', false); + // Hány késés felel meg egy igazolatlan órának - ha 0 vagy _KERESESI_IDOK_OSSZEADODNAK, akkor nem váltjuk át + define('_HANY_KESES_IGAZOLATLAN', 3); + // Hány felszerelés hiány felel meg egy igazolatlan órának - ha 0 vagy _KERESESI_IDOK_OSSZEADODNAK, akkor nem váltjuk át + define('_HANY_FSZ_IGAZOLATLAN', 3); + + // Hiányzás, késés, felszerelés hiány beírása (szaktanár): következő nap 16:00 + define('_HIANYZAS_HATARIDO',date('Y-m-d 00:00:00',strtotime('16 hours ago'))); + // Hiányzás, késés beírása osztályfőnöknek: 5 tanítási nap + define('_OFO_HIANYZAS_BEIRAS',5); + define('_OFO_HIANYZAS_HATARIDO',getTanitasiNapVissza(_OFO_HIANYZAS_BEIRAS,'curdate()')); + // Igazolás beírásának határideje: 5 tanítási nap + define('_IGAZOLAS_BEIRAS',6); + define('_IGAZOLAS_BEIRAS_HATARIDO',getTanitasiNapVissza(_IGAZOLAS_BEIRAS,'curdate()')); + // Igazolás leadás határideje - ha nincs közben osztályfőnöki óra: 8 tanítási nap + define('_IGAZOLAS_LEADAS',8); + define('_LEGKORABBI_IGAZOLHATO_HIANYZAS',getTanitasiNapVissza(_IGAZOLAS_BEIRAS+_IGAZOLAS_LEADAS,'curdate()')); + + } + +/* + + // Legalább hány óra jelenjen meg az órarend-módosító oldalon? (default: 8) + define('__MAXORA_MINIMUMA',8); + // Legalább hány nap jelenjen meg az órarend-módosító oldalon? (default: 5) + define('__HETIMAXNAP_MINIMUMA',5); + + // Súlyozás + global $SULYOZAS; + $SULYOZAS = array('1:2:3:4:5','0.2:1:1:1:1','1:1:2:2:2'); + + + // A dicséret fokozatok testreszabása + global $DICSERET_FOKOZATOK; + $DICSERET_FOKOZATOK = array( + 'SEMMI', + 'SZAKTANARI_DICSERET', + 'OSZTALYFONOKI_DICSERET', + 'IGAZGATOI_DICSERET', + 'NEVELOTESTULETI_DICSERET' + ); + + // A fegyelmi fokozatok testreszabása - például: rovók kiiktatása !! A hiányzási fokozatokat is érinti!! (a példában nincs átjavítva) + // Ha egyszer változtattad, csak hozzáfűzni szabad (átalakítás alatt) + global $FEGYELMI_FOKOZATOK; + $FEGYELMI_FOKOZATOK = array( + 'SEMMI', + 'SZAKTANARI_FIGYELMEZTETES', +// 'SZAKTANARI_INTO', +// 'SZAKTANARI_ROVO', + 'SZOBELI_OSZTALYFONOKI_FIGYELMEZTETES', + 'OSZTALYFONOKI_FIGYELMEZTETES', + 'OSZTALYFONOKI_INTO', +// 'OSZTALYFONOKI_ROVO', + 'IGAZGATOI_FIGYELMEZTETO', + 'IGAZGATOI_INTO', +// 'IGAZGATOI_ROVO', + 'NEVELOTESTULETI_FIGYELMEZTETES', + 'NEVELOTESTULETI_INTES', +// 'NEVELOTESTULETI_MEGROVAS' + ); + + // Igazolatlan hiányzások fegyelmi fokozatai + global $HIANYZASI_FOKOZATOK; + $HIANYZASI_FOKOZATOK = array( + 0 => 0, // semmi + 1 => 2, // szóbeli osztályfőnöki figyelmeztetés + 2 => 3, // osztályfőnöki figyelmeztetés + 3 => 4, // osztályfőnöki intő + 4 => 5, // osztályfőnöki rovó + 5 => 6, // igazgatói figyelmeztető (szülő értesítése) + 6 => 0, // semmi + 7 => 7, // igazgatói intő + 8 => 0, // semmi + 9 => 8, // igazgatói rovó + 10 => 0, // igazgatói rovó + 11 => 9 // fegyelmi eljárás + ); + + global $KOVETELMENY; + // Osztályzatok testreszabása - egyedi felsorolás (RADYX) + $KOVETELMENY['egyedi felsorolás']= array( + 'értékek' => array('1.0','2.0','3.0'), + '1.0' => array('rovid' => 'szorgalmas', 'hivatalos' => 'SZORGALMAS'), + '2.0' => array('rovid' => 'ügyes', 'hivatalos' => 'UGYES', 'megjegyzes' => 'dicseret'), + '3.0' => array('rovid' => 'aranyos', 'hivatalos' => 'ARANYOS'), + ); + // Osztályzatok testreszabása - például: 6 fokú skála (RADYX) + $KOVETELMENY['jegy']= array( + 'értékek' => array('1.0','2.0','3.0','4.0','5.0','6.0'), + '1.0' => array('rovid' => '1', 'hivatalos' => 'ELEGTELEN'), + '2.0' => array('rovid' => '2', 'hivatalos' => 'ELEGSEGES', 'megjegyzes' => 'figyelmeztető'), + '3.0' => array('rovid' => '3', 'hivatalos' => 'KOZEPES'), + '4.0' => array('rovid' => '4', 'hivatalos' => 'JO',), + '5.0' => array('rovid' => '5', 'hivatalos' => 'JELES'), + '6.0' => array('rovid' => '6', 'hivatalos' => 'SZUPER', 'megjegyzes' => 'dicséret'), + ); + + // A kitűnő megállapításához csak az átlagot vesszük figyelembe + define('_KITUNO_ATLAG', 5.0); + // jelesrendű, aki a megadott átlag fölött van és nincs a megadott jegynél gyengébb eredménye egyik tárgyból sem + define('_JELES_ATLAG', 4.75); + define('_JELES_LEGGYENGEBB_JEGY', 3); + +*/ + +?> \ No newline at end of file diff --git a/mayor-orig/mayor-installer-sulix/config/module-naplo/config-vmg.php.sulix b/mayor-orig/mayor-installer-sulix/config/module-naplo/config-vmg.php.sulix new file mode 100644 index 00000000..60073fc8 --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/config/module-naplo/config-vmg.php.sulix @@ -0,0 +1,159 @@ + százalékos) + // define('__JEGYTIPUS_VALTHATO',true); + + + // Tanév függő beállítások! + if (defined('__TANEV')) { + + if(__TANEV==2008) { + // Ha azt akarjuk, hogy a tanárok módosíthassák a tanköreik névsorát... bátor vállalkozás :o) + // define('_TANKOR_MODOSITAS_HATARIDO','2008-09-30'); + } else { + } + + // Szülői igazolások száma: félévenként legfeljebb 5 nap + define('__SZULOI_IGAZOLAS_FELEVRE',5); + define('__SZULOI_IGAZOLAS_EVRE',0); + // Szülő által igazolható órák maximális száma: félévenként legfeljebb 14 óra + define('__SZULOI_ORA_IGAZOLAS_FELEVRE',14); + define('__SZULOI_ORA_IGAZOLAS_EVRE',0); + // Osztályfőnöki igazolások száma: évi 3 nap + // Csak ha < 5 igazolatlanja van + define('__OSZTALYFONOKI_IGAZOLAS_FELEVRE',0); + define('__OSZTALYFONOKI_IGAZOLAS_EVRE',5); + define('__OSZTALYFONOKI_ORA_IGAZOLAS_FELEVRE',0); + define('__OSZTALYFONOKI_ORA_IGAZOLAS_EVRE',21); + + // Összeadjuk-e a késések perceit, hogy átváltsuk + define('_KESESI_IDOK_OSSZEADODNAK', false); + // Hány késés felel meg egy igazolatlan órának - ha 0 vagy _KERESESI_IDOK_OSSZEADODNAK, akkor nem váltjuk át + define('_HANY_KESES_IGAZOLATLAN', 3); + // Hány felszerelés hiány felel meg egy igazolatlan órának - ha 0 vagy _KERESESI_IDOK_OSSZEADODNAK, akkor nem váltjuk át + define('_HANY_FSZ_IGAZOLATLAN', 3); + + // Hiányzás, késés, felszerelés hiány beírása (szaktanár): következő nap 16:00 + define('_HIANYZAS_HATARIDO',date('Y-m-d 00:00:00',strtotime('16 hours ago'))); + // Hiányzás, késés beírása osztályfőnöknek: 5 tanítási nap + define('_OFO_HIANYZAS_BEIRAS',5); + define('_OFO_HIANYZAS_HATARIDO',getTanitasiNapVissza(_OFO_HIANYZAS_BEIRAS,'curdate()')); + // Igazolás beírásának határideje: 5 tanítási nap + define('_IGAZOLAS_BEIRAS',6); + define('_IGAZOLAS_BEIRAS_HATARIDO',getTanitasiNapVissza(_IGAZOLAS_BEIRAS,'curdate()')); + // Igazolás leadás határideje - ha nincs közben osztályfőnöki óra: 8 tanítási nap + define('_IGAZOLAS_LEADAS',8); + define('_LEGKORABBI_IGAZOLHATO_HIANYZAS',getTanitasiNapVissza(_IGAZOLAS_BEIRAS+_IGAZOLAS_LEADAS,'curdate()')); + + // Legalább hány óra jelenjen meg az órarend-módosító oldalon? (default: 8) + define('__MAXORA_MINIMUMA',8); + // Legalább hány nap jelenjen meg az órarend-módosító oldalon? (default: 5) + define('__HETIMAXNAP_MINIMUMA',5); + + } + +/* + ---------------- + Alapértelmezések + + global $SULYOZAS; + $SULYOZAS = array('1:2:3:4:5','1:1:1:1:1','1:1:2:2:2'); + + // A dicséret fokozatok testreszabása + global $DICSERET_FOKOZATOK; + $DICSERET_FOKOZATOK = array( + 'SEMMI', + 'SZAKTANARI_DICSERET', + 'OSZTALYFONOKI_DICSERET', + 'IGAZGATOI_DICSERET', + 'NEVELOTESTULETI_DICSERET' + ); + + // A fegyelmi fokozatok testreszabása + // Csak hozzáfűzni szabad (a tömb végére) + global $FEGYELMI_FOKOZATOK; + $FEGYELMI_FOKOZATOK = array( + 'SEMMI', + 'SZAKTANARI_FIGYELMEZTETES', + 'SZOBELI_OSZTALYFONOKI_FIGYELMEZTETES', + 'OSZTALYFONOKI_FIGYELMEZTETES', + 'OSZTALYFONOKI_INTO', + 'OSZTALYFONOKI_ROVO', + 'IGAZGATOI_FIGYELMEZTETO', + 'IGAZGATOI_INTO', + 'IGAZGATOI_ROVO', + 'NEVELOTESTULETI_FIGYELMEZTETES', + 'NEVELOTESTULETI_INTES', + 'NEVELOTESTULETI_MEGROVAS' + ); + + // Igazolatlan hiányzások fegyelmi fokozatai + global $HIANYZASI_FOKOZATOK; + $HIANYZASI_FOKOZATOK = array( + 0 => 0, // semmi + 1 => 2, // szóbeli osztályfőnöki figyelmeztetés + 2 => 3, // osztályfőnöki figyelmeztetés + 3 => 4, // osztályfőnöki intő + 4 => 5, // osztályfőnöki rovó + 5 => 6, // igazgatói figyelmeztető (szülő értesítése) + 6 => 0, // semmi + 7 => 7, // igazgatói intő + 8 => 0, // semmi + 9 => 8, // igazgatói rovó + 10 => 0, // igazgatói rovó + 11 => 9 // fegyelmi eljárás + ); + + // A kitűnő megállapításához csak az átlagot vesszük figyelembe + define('_KITUNO_ATLAG', 5.0); + // jelesrendű, aki a megadott átlag fölött van és nincs a megadott jegynél gyengébb eredménye egyik tárgyból sem + define('_JELES_ATLAG', 4.75); + define('_JELES_LEGGYENGEBB_JEGY', 3); + +*/ + +?> \ No newline at end of file diff --git a/mayor-orig/mayor-installer-sulix/config/module-naplo/config.php.sulix b/mayor-orig/mayor-installer-sulix/config/module-naplo/config.php.sulix new file mode 100644 index 00000000..836d828b --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/config/module-naplo/config.php.sulix @@ -0,0 +1,65 @@ + 'ALAP', + 'tagozat' => 'TAG', + 'emeltszintű érettségi előkészítő' => 'EÉE', + 'középszintű érettségi előkészítő' => 'KÉE', + 'első nyelv' => 'NY1', + 'második nyelv' => 'NY2', + 'harmadik nyelv' => 'NY3', + 'gyógytestnevelés' => 'GY', + 'fiú' => '(fiú)', + 'lány' => '(lány)', + 'úszás' => 'U', +// 'gyógytestnevelés' => 'II/AB', +// 'könnyített testnevelés' => 'I.', + ); + +?> \ No newline at end of file diff --git a/mayor-orig/mayor-installer-sulix/config/module-portal/config.php.sulix b/mayor-orig/mayor-installer-sulix/config/module-portal/config.php.sulix new file mode 100644 index 00000000..42693df4 --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/config/module-portal/config.php.sulix @@ -0,0 +1,11 @@ + \ No newline at end of file diff --git a/mayor-orig/mayor-installer-sulix/config/parent-conf.php.sulix b/mayor-orig/mayor-installer-sulix/config/parent-conf.php.sulix new file mode 100644 index 00000000..c2e92c80 --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/config/parent-conf.php.sulix @@ -0,0 +1,23 @@ +'naplo', 'sub'=>'osztalyozo', 'f'=>'diak'); +//$DEFAULT_PSF['parent'] = array('page'=>'naplo', 'f' => 'diakValaszto'); +//$DEFAULT_PSF['parent'] = array('page'=>'portal', 'f' => 'start'); +$AUTH['parent'] = array( + 'skin' => 'sulix', + 'backend' => 'mysql', + 'authentication' => 'required', + 'onExpired' => 'warning', + 'onDisabled' => 'none', + 'enableSelfPasswordChange' => true, +# 'createAccount' => 'byRegistration', + 'createAccount' => 'byAdmin', + 'accountAttrs' => array('mail','telephoneNumber'), + + 'mysql host' => 'localhost', + 'mysql db' => 'mayor_parent', + 'mysql user' => 'mayor_parent', + 'mysql pw' => '%SQLPW%', +); + +?> \ No newline at end of file diff --git a/mayor-orig/mayor-installer-sulix/config/private-conf.php.sulix b/mayor-orig/mayor-installer-sulix/config/private-conf.php.sulix new file mode 100644 index 00000000..69fe428f --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/config/private-conf.php.sulix @@ -0,0 +1,76 @@ +'portal', 'sub' => 'portal', 'f' => 'portal'); + $DEFAULT_PSF['private'] = array('page'=>'naplo', 'sub' => '', 'f' => 'naplo'); + +/* + 'onExpired = 'none' | 'warning' | 'force update' + Ha lejár a jelszó érvényessége (de még nincs letiltva), akkor + none - ne történjen semmi, azaz nem vesszük figyelembe, beengedjük + warning - beengedjük figyelmeztető üzenettel + force update - jelszóváltoztatásra kényszerítjük => enableSelfPasswordChange + 'onDisabled = 'none' | 'refuse' + none - nem vesszük figyelembe, azaz beengedjük + refuse - visszautasítjuk + 'enableSelfPasswordChange' = true | false + 'accountCreateMode' => 'registration' | 'create by admin' => admingroup + +*/ + + + $AUTH['private'] = array( + + 'skin' => 'sulix', + 'authentication' => 'required', + 'onExpired' => 'force update', + 'onDisabled' => 'none', + 'enableSelfPasswordChange' => true, + 'createAccount' => 'byAdmin', + 'adminGroup' => 'useradmin', + 'categories' => array('tanár','diák','titkárság','egyéb'), + 'categoryMap' => array( + 'tanar' => 'cn=teachers,ou=group,%BASEDN%', + 'diak' => 'cn=students,ou=group,%BASEDN%', + 'titkarsag' => 'cn=administration,ou=group,%BASEDN%', + 'egyeb' => 'cn=other,ou=group,%BASEDN%', + + 'useradmin' => 'cn=useradmins,ou=group,%BASEDN%', + 'naploadmin' => 'cn=diaryadmins,ou=group,%BASEDN%', + 'diakadmin' => 'cn=studentadmins,ou=group,%BASEDN%', + 'uzenoadmin' => 'cn=msgadmins,ou=group,%BASEDN%', + 'hirekadmin' => 'cn=newsadmins,ou=group,%BASEDN%', + 'vezetoseg' => 'cn=management,ou=group,%BASEDN%', + + ), + 'accountAttrs' => array('studyId','mail','telephoneNumber'), + 'unixStyleAccounts' => false, + + 'shadowLastChange' => intval(time()/(60*60*24)), + 'shadowMin' => 2, + 'shadowMax' => 80, + 'shadowWarning' => 10, + 'shadowInactive' => 0, + + # LDAPNG + 'backend' => 'ldapng', + 'ldapHostname' => 'ldap://localhost', + 'ldapBaseDn' => '%BASEDN%', + #'ldapUser' => 'CN=User,OU=Users,%BASEDN%', // Olvasási jog az LDAP-ben - Normál user + #'ldapPw' => 'jelszó', + #'ldapAccountOperatorUser' => 'CN=Op,OU=Users,%BASEDN%', // Account Operators (Fiókfelelősök) csoport tag pl (jelszóváltoztatás) + #'ldapAccountOperatorPw' => 'jelszó', + 'ldapUserObjectClass' => 'person', // Userek objectum osztálya (volt posixAccount) + 'ldapStudyIdAttr' => 'employeenumber', // Az oktatási azonosítót tároló attribútum (studyId) + 'ldapUserAccountAttr' => 'uid', // A felhasználói azonosítót tároló attribútum (uid) + 'ldapCnAttr' => 'cn', // A felhasználói teljes neve (cn) + 'ldapGroupObjectClass' => 'posixgroup', // volt: 'groupofnames' (bár ebben memberUid lenne, de feltesszük, hogy van member is..,// Csoportok objectum osztálya (volt nayorGroup) + 'ldapGroupCnAttr' => 'cn', // A csoport teljes neve (cn) + + 'ldapContainers' => array( + 'ou=People,%BASEDN%', + 'ou=group,%BASEDN%' + ), + 'cacheable' => true, + ); + +?> diff --git a/mayor-orig/mayor-installer-sulix/config/public-conf.php.sulix b/mayor-orig/mayor-installer-sulix/config/public-conf.php.sulix new file mode 100644 index 00000000..fcd3206a --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/config/public-conf.php.sulix @@ -0,0 +1,21 @@ +'portal', 'sub'=>'portal', 'f' => 'portal'); +// Illetve nélküle, csak napló modullal: + $DEFAULT_PSF['public'] = array('page'=>'auth', 'sub'=>'', 'f' => 'login'); + +$AUTH['public'] = array( + 'skin' => 'sulix', + 'backend' => 'file', + 'authentication' => 'optional', + 'onExpired' => 'force update', + 'onDisabled' => 'refuse', + 'accountAttrs' => array('mail'), + + 'file account file' => '/tmp/passwd', + 'file group file' => '/tmp/group', +); + +?> \ No newline at end of file diff --git a/mayor-orig/mayor-installer-sulix/config/skin-classic/config.php.sulix b/mayor-orig/mayor-installer-sulix/config/skin-classic/config.php.sulix new file mode 100644 index 00000000..81eb6810 --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/config/skin-classic/config.php.sulix @@ -0,0 +1,6 @@ +'."\n"; + //$SSSHH .= ''."\n"; +?> \ No newline at end of file diff --git a/mayor-orig/mayor-installer-sulix/config/skin-classic/naplo-config.php.sulix b/mayor-orig/mayor-installer-sulix/config/skin-classic/naplo-config.php.sulix new file mode 100644 index 00000000..10972b78 --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/config/skin-classic/naplo-config.php.sulix @@ -0,0 +1,14 @@ +'."\n"; +} + +?> \ No newline at end of file diff --git a/mayor-orig/mayor-installer-sulix/config/skin-sulix/config.php.sulix b/mayor-orig/mayor-installer-sulix/config/skin-sulix/config.php.sulix new file mode 100644 index 00000000..92075724 --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/config/skin-sulix/config.php.sulix @@ -0,0 +1,7 @@ + \ No newline at end of file diff --git a/mayor-orig/mayor-installer-sulix/config/skin-teszt/config.php.sulix b/mayor-orig/mayor-installer-sulix/config/skin-teszt/config.php.sulix new file mode 100644 index 00000000..92e1bff1 --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/config/skin-teszt/config.php.sulix @@ -0,0 +1,21 @@ +'."\n"; + //$SSSHH .= ''."\n"; +?> \ No newline at end of file diff --git a/mayor-orig/mayor-installer-sulix/config/skin-winter/config.php.sulix b/mayor-orig/mayor-installer-sulix/config/skin-winter/config.php.sulix new file mode 100644 index 00000000..d106ade5 --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/config/skin-winter/config.php.sulix @@ -0,0 +1,6 @@ +?php + // site skin specific html head + $SSSHH = ''; + //$SSSHH .= ''."\n"; + //$SSSHH .= ''."\n"; +?> \ No newline at end of file diff --git a/mayor-orig/mayor-installer-sulix/devel/copy-sulixconfig.sh b/mayor-orig/mayor-installer-sulix/devel/copy-sulixconfig.sh new file mode 100644 index 00000000..3b227646 --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/devel/copy-sulixconfig.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +cp -r /root/mayor/sulix/* /srv/mayor + diff --git a/mayor-orig/mayor-installer-sulix/devel/example2sulix.sh b/mayor-orig/mayor-installer-sulix/devel/example2sulix.sh new file mode 100644 index 00000000..6f2ceac2 --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/devel/example2sulix.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +for i in $(find /srv/mayor/ -name *.example -print | sed -e 's/.example//'); do + name=`basename $i`; + dir=$(echo $i | sed -e 's#/srv/mayor#/root/mayor/sulix#' -e "s/$name//"); + mkdir -p $dir; + cp $i.example $(echo $i | sed -e 's#/srv/mayor#/root/mayor/sulix#').sulix; +done diff --git a/mayor-orig/mayor-installer-sulix/install/install.d/05env.sh b/mayor-orig/mayor-installer-sulix/install/install.d/05env.sh new file mode 100755 index 00000000..90d18659 --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/install/install.d/05env.sh @@ -0,0 +1,17 @@ +#!/bin/bash +# + +cat < " + PW=`mypwgen` +# echo "$MAYORDIR/config/$file.sulix" sed -e "s/%SQLPW%/${PW}/" -e "s/%BASEDN%/${BASEDN}/" -e "s#%MAYORDIR%#${MAYORDIR}#" + cat "$MAYORDIR/config/$file.sulix" | sed -e "s/%SQLPW%/${PW}/" -e "s/%BASEDN%/${BASEDN}/" -e "s#%MAYORDIR%#${MAYORDIR}#" > "$MAYORDIR/config/$file" + echo $file + fi +done + +echo -n " module-naplo/config.php.sulix --> " +PW=`mypwgen` +PWREAD=`mypwgen` +if [ -e "$MAYORDIR/config/module-naplo/config.php" ]; then echo " module-naplo/config.php létezik."; else + cat "$MAYORDIR/config/module-naplo/config.php.sulix" | sed -e "s/%SQLPW%/${PW}/" -e "s/%SQLPWREAD%/${PWREAD}/" > "$MAYORDIR/config/module-naplo/config.php" + echo "module-naplo/config.php" +fi + +if [ -e "$MAYORDIR/config/skin-classic/naplo-config.php" ]; then echo " skin-classic/naplo-config.php létezik."; else + echo -n " skin-classic/naplo-config.php.sulix --> " + cp $MAYORDIR/config/skin-classic/naplo-config.php.sulix $MAYORDIR/config/skin-classic/naplo-config.php + echo "config/skin-classic/naplo-config.php" +fi + +# A private menü átalakítása (nincs Kilépés, Felhasználói adatok - ahol nem kell...) +if [ -e "$MAYORDIR/config/menu/private/menu-hu_HU.php" ]; then echo " menu/private/menu-hu_HU.php"; else + echo -n " menu/private/menu-hu_HU.php.sulix --> " + cp $MAYORDIR/config/menu/private/menu-hu_HU.php.sulix $MAYORDIR/config/menu/private/menu-hu_HU.php + echo "menu/private/menu-hu_HU.php" +fi + +# A public menü átalakítása (szülői bejelentkezés) +if [ -e "$MAYORDIR/config/menu/public/menu-hu_HU.php" ]; then echo " menu/public/menu-hu_HU.php"; else + echo -n " menu/public/menu-hu_HU.php.sulix --> " + cp $MAYORDIR/config/menu/public/menu-hu_HU.php.sulix $MAYORDIR/config/menu/public/menu-hu_HU.php + echo "menu/public/menu-hu_HU.php" +fi + +# A parent menü átalakítása (utolsó két menüpont törlése) +if [ -e "$MAYORDIR/config/menu/parent/menu-hu_HU.php" ]; then echo " menu/parent/menu-hu_HU.php"; else + echo -n " menu/parent/menu-hu_HU.php.sulix --> " + cp $MAYORDIR/config/menu/parent/menu-hu_HU.php.sulix $MAYORDIR/config/menu/parent/menu-hu_HU.php + echo "menu/parent/menu-hu_HU.php" +fi + +# IFRAME-be ágyazás engedélyezése +if [ -e "$MAYORDIR/config/skin-sulix/config.php" ]; then echo " skin-sulix/config.php"; else + echo -n " skin-sulix/config.php.sulix --> " + cp $MAYORDIR/config/skin-sulix/config.php.sulix $MAYORDIR/config/skin-sulix/config.php + echo "skin-sulix/config.php" +fi + diff --git a/mayor-orig/mayor-installer-sulix/install/install.d/35createdatabases.sh b/mayor-orig/mayor-installer-sulix/install/install.d/35createdatabases.sh new file mode 100755 index 00000000..2ca1a258 --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/install/install.d/35createdatabases.sh @@ -0,0 +1,114 @@ +#!/bin/bash +# + +cat < mayor-login.sql +DB=`grep db $MAYORDIR/config/parent-conf.php | sed -e "s/^.*>\ *['|\"]//g" -e "s/['|\"],//g"` +USER=`grep user $MAYORDIR/config/parent-conf.php | sed -e "s/^.*>\ *['|\"]//g" -e "s/['|\"],//g"` +PW=`grep pw $MAYORDIR/config/parent-conf.php | sed -e "s/^.*>\ *['|\"]//g" -e "s/['|\"],//g"` +cat $MAYORDIR/install/base/mysql/mayor-auth.sql | sed -e "s/%MYSQL_AUTH_DB%/$DB/g" -e "s/%MYSQL_AUTH_USER%/$USER/g" \ + -e "s/%MYSQL_AUTH_PW%/$PW/g" > mayor-parent.sql + +# A private hozzáférési szint LDAP-ot használ!! +#DB=`grep db $MAYORDIR/config/private-conf.php | sed -e "s/^.*>\ *['|\"]//g" -e "s/['|\"],//g"` +#USER=`grep 'mysql user' $MAYORDIR/config/private-conf.php | sed -e "s/^.*>\ *['|\"]//g" -e "s/['|\"],//g"` +#PW=`grep pw $MAYORDIR/config/private-conf.php | sed -e "s/^.*>\ *['|\"]//g" -e "s/['|\"],//g"` +#cat $MAYORDIR/install/base/mysql/mayor-auth.sql | sed -e "s/%MYSQL_AUTH_DB%/$DB/g" -e "s/%MYSQL_AUTH_USER%/$USER/g" \ +# -e "s/%MYSQL_AUTH_PW%/$PW/g" > mayor-private.sql + +DB=`grep db $MAYORDIR/config/module-naplo/config.php | grep naplo_base | sed -e "s/^.*=\ *['|\"]//g" -e "s/['|\"];//g"` +USER=`egrep 'userWrite.*=' $MAYORDIR/config/module-naplo/config.php | sed -e "s/^.*=\ *['|\"]//g" -e "s/['|\"];//g"` +USERREAD=`egrep 'userRead.*=' $MAYORDIR/config/module-naplo/config.php | sed -e "s/^.*=\ *['|\"]//g" -e "s/['|\"];//g"` +PW=`egrep 'pwWrite.*=' $MAYORDIR/config/module-naplo/config.php | sed -e "s/^.*=\ *['|\"]//g" -e "s/['|\"];//g"` +PWREAD=`egrep 'pwRead.*=' $MAYORDIR/config/module-naplo/config.php | sed -e "s/^.*=\ *['|\"]//g" -e "s/['|\"];//g"` +cat $MAYORDIR/install/module-naplo/mysql/base.sql | sed -e "s/%MYSQL_NAPLO_DB%/$DB/g" -e "s/%MYSQL_NAPLO_USER%/$USER/g" \ + -e "s/%MYSQL_NAPLO_PW%/$PW/g" -e "s/%MYSQL_NAPLO_USER_READ%/$USERREAD/g" \ + -e "s/%MYSQL_NAPLO_PW_READ%/$PWREAD/g" > base.sql + +# A private hozzáférési szint LDAP-ot használ!! +# DB=`grep db $MAYORDIR/config/private-conf.php | sed -e "s/^.*>\ *['|\"]//g" -e "s/['|\"],//g"` +#cat $MAYORDIR/install/base/mysql/private-users.sql | sed -e "s/%MYSQL_PRIVATE_DB%/$DB/g" > private-users.sql +#cat $MAYORDIR/install/module-naplo/mysql/naplo-users.sql | sed -e "s/%MYSQL_PRIVATE_DB%/$DB/g" > naplo-users.sql + +echo " A létrejött sql fileok:" +FILES=`ls *.sql` +for f in $FILES +do + echo " * ${f}"; +done; +echo -e "\n" + +if [ ! -e $MAYORDIR/config/main.conf ]; then + cat $MAYORDIR/config/main.conf.sulix | sed -e s/%SQLPW%/$MYSQLROOTPW/ -e s/%BASEDN%/$BASEDN/g > $MAYORDIR/config/main.conf + chmod 600 $MAYORDIR/config/main.conf +fi + +if [ "$MYSQLROOTPW" != "" ]; then MYSQLROOTPW="-p$MYSQLROOTPW"; fi +cat $TMPDIR/mysql/mayor-login.sql | mysql $MYSQLROOTPW --user=root --default-character-set=utf8 +cat $TMPDIR/mysql/mayor-parent.sql | mysql $MYSQLROOTPW --user=root --default-character-set=utf8 + +# A private hozzáférési szint LDAP-ot használ!! +#cat $TMPDIR/mysql/mayor-private.sql | mysql $MYSQLROOTPW --user=root --default-character-set=utf8 +#cat $TMPDIR/mysql/private-users.sql | mysql $MYSQLROOTPW --user=root --default-character-set=utf8 +#cat $TMPDIR/mysql/naplo-users.sql | mysql $MYSQLROOTPW --user=root --default-character-set=utf8 + +cat $TMPDIR/mysql/base.sql | mysql $MYSQLROOTPW --user=root --default-character-set=utf8 diff --git a/mayor-orig/mayor-installer-sulix/install/install.d/40binary.sh b/mayor-orig/mayor-installer-sulix/install/install.d/40binary.sh new file mode 100755 index 00000000..ab6ac346 --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/install/install.d/40binary.sh @@ -0,0 +1,25 @@ +#!/bin/bash +# + +cat < $TMPDIR/mysql/intezmeny.sql + +insert into $DB.intezmeny (OMKod, rovidNev, nev, alapertelmezett) VALUES ('$OMKOD','$ROVID','$INTEZMENYNEV',1); +create database intezmeny_$ROVID character set utf8 collate utf8_hungarian_ci; +grant select,execute on intezmeny_$ROVID.* to '$USERREAD'@'localhost'; +grant all on intezmeny_$ROVID.* to '$USER'@'localhost'; +use intezmeny_$ROVID; + +EOF + +#if [ "$MYSQLROOTPW" == "" ]; then +# read -p " A mysql root jelszó (a begépelt szöveg nem látszik!): " -s MYSQLROOTPW +#fi + +if [ "$MYSQLROOTPW" != "" ]; then MYSQLROOTPW="-p$MYSQLROOTPW"; fi + +cat $TMPDIR/mysql/intezmeny.sql $MAYORDIR/install/module-naplo/mysql/intezmeny.sql | mysql $MYSQLROOTPW $INTEZMENYDB --default-character-set=utf8 + diff --git a/mayor-orig/mayor-installer-sulix/install/install.d/47tanev.sh b/mayor-orig/mayor-installer-sulix/install/install.d/47tanev.sh new file mode 100755 index 00000000..f529bc9d --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/install/install.d/47tanev.sh @@ -0,0 +1,60 @@ +#!/bin/bash +# + +cat < $TMPDIR/mysql/tanev.sql + +create database $DB character set utf8 collate utf8_hungarian_ci; +grant select,execute on $DB.* to '$USERREAD'@'localhost'; +grant all on $DB.* to '$USER'@'localhost'; + +update $INTEZMENYDB.szemeszter SET statusz='aktív' where tanev=$TANEV; + +use $DB; + +EOF + +#if [ "$MYSQLROOTPW" == "" ]; then +# read -p " A mysql root jelszó (a begépelt szöveg nem látszik!): " -s MYSQLROOTPW +#fi + +if [ "$MYSQLROOTPW" != "" ]; then MYSQLROOTPW="-p$MYSQLROOTPW"; fi + +cat $TMPDIR/mysql/tanev.sql $MAYORDIR/install/module-naplo/mysql/tanev.sql | sed -e s/%DB%/$INTEZMENYDB/g | mysql $MYSQLROOTPW $INTEZMENYDB --default-character-set=utf8 + diff --git a/mayor-orig/mayor-installer-sulix/install/install.d/50linker.sh b/mayor-orig/mayor-installer-sulix/install/install.d/50linker.sh new file mode 100755 index 00000000..96d17007 --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/install/install.d/50linker.sh @@ -0,0 +1,53 @@ +#!/bin/bash + +cat < $MAYORDIR/www/policy/$POLICY/$file" + ln -s $MAYORDIR/www/policy/private/$file $MAYORDIR/www/policy/$POLICY/$file + else + echo " Hiányzó file: $MAYORDIR/www/policy/private/$file" + fi + else + echo " [OK] A file már létezik: " $file + fi + done + done +done diff --git a/mayor-orig/mayor-installer-sulix/install/install.d/55tex.sh b/mayor-orig/mayor-installer-sulix/install/install.d/55tex.sh new file mode 100755 index 00000000..c0886c08 --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/install/install.d/55tex.sh @@ -0,0 +1,13 @@ +#!/bin/bash +# +cat < " + PW=`mypwgen` + if [ "$ROVID" = "" ]; then + ROVID="demo" + fi + cat "$MAYORDIR/config/$file.sulix" | sed -e "s/%SQLPW%/$PW/" -e "s/demo/${ROVID}/" > "$MAYORDIR/config/$file" + echo $file +fi + +echo -e "\n SQL file létrehozása... " +if [ ! -d $TMPDIR/mysql ]; then + mkdir -p $TMPDIR/mysql +fi +cd $TMPDIR/mysql +PDB=`grep db $MAYORDIR/config/$file | sed -e "s/.*=\ *['\"]//g" -e "s/['\"];//g"` +USER=`grep user $MAYORDIR/config/$file | sed -e "s/.*=\ *['\"]//g" -e "s/['\"];//g"` +PW=`grep pw $MAYORDIR/config/$file | sed -e "s/.*=\ *['\"]//g" -e "s/['\"];//g"` + +cat $MAYORDIR/install/mayor-portal/mysql/mayor-portal.sql | sed \ + -e "s/%MYSQL_PORTAL_DB%/$PDB/g" \ + -e "s/%MYSQL_PORTAL_USER%/$USER/g" \ + -e "s/%MYSQL_PORTAL_PW%/$PW/g" > mayor-portal.sql + +# Ezek LDAP-ból jönnének!!! +#DB=`grep db $MAYORDIR/config/private-conf.php | sed -e "s/^.*>\ *['|\"]//g" -e "s/['|\"],//g"` +#cat $MAYORDIR/install/mayor-portal/mysql/portal-init.sql | sed \ +# -e "s/%MYSQL_PRIVATE_DB%/$DB/g" \ +# -e "s/%MYSQL_PORTAL_DB%/$PDB/g" > portal-init.sql + + +#if [ "$MYSQLROOTPW" == "" ]; then +# read -p " A mysql root jelszó (a begépelt szöveg nem látszik!): " -s MYSQLROOTPW +#fi + +if [ "$MYSQLROOTPW" != "" ]; then MYSQLROOTPW="-p$MYSQLROOTPW"; fi +#cat $TMPDIR/mysql/mayor-portal.sql $TMPDIR/mysql/portal-init.sql | mysql -p$MYSQLROOTPW --user=root --default-character-set=utf8 +cat $TMPDIR/mysql/mayor-portal.sql | mysql $MYSQLROOTPW --user=root --default-character-set=utf8 + +echo "" +for file in private-conf.php parent-conf.php public-conf.php; do + echo -n " $file ... " + sed -i.60portal -e "s/^[ \t]*\$DEFAULT_PSF\[\(.*\)\]\(.*\)/\/\/\t\$DEFAULT_PSF\[\1\]\2\n\t\$DEFAULT_PSF\[\1\] = array('page'=>'portal', 'sub' => 'portal', 'f' => 'portal');/" $MAYORDIR/config/$file + echo ok +done + +if [ "$ROVID" != "demo" ]; then + echo -e "\nEgyedi kezdőoldalak létrehozása:" + for policy in private public parent; do + echo -n " $policy " + for skin in classic pda; do + cp $MAYORDIR/www/policy/$policy/portal/portal/portal_demo.$skin.php $MAYORDIR/www/policy/$policy/portal/portal/portal_$ROVID.$skin.php + echo -n "... " + done + echo "ok" + done +fi + diff --git a/mayor-orig/mayor-installer-sulix/install/mayor-installer-sulix/ldap/group.lidf b/mayor-orig/mayor-installer-sulix/install/mayor-installer-sulix/ldap/group.lidf new file mode 100644 index 00000000..49a852df --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/install/mayor-installer-sulix/ldap/group.lidf @@ -0,0 +1,32 @@ +# naploadmin, group, vmayort.hu +dn: cn=naploadmin,ou=group,dc=vmayort,dc=hu +cn: naploadmin +displayName: naploadmin +sambaSID: S-1-5-21-3317027340-1707170271-2205240687-3095 +sambaGroupType: 2 +MailCommand: "|/usr/bin/formail -I \"From \" | sudo -u mail /usr/lib/cyrus-ima + pd/deliver -r 12D -a cyrus -m 12D" +gidNumber: 1047 +description:: T3N6dMOhbHk= +member: uid=admin,ou=people,dc=vmayort,dc=hu +memberUid: admin +phpgwAccountType: g +phpgwAccountStatus: A +phpgwAccountExpires: -1 +objectClass: top +objectClass: posixGroup +objectClass: MailRecipient +objectClass: sambaGroupMapping +objectClass: groupOfNames +objectClass: SchoolClass +objectClass: phpgwAccount +parentList: 12D-szulok +parentListAdminEmail: admin@vmayort.hu +parentListCommand: "|/usr/sbin/filter_parent_list 12D" + +# search result +search: 2 +result: 0 Success + +# numResponses: 2 +# numEntries: 1 diff --git a/mayor-orig/mayor-installer-sulix/install/mayor-installer-sulix/ldap/user.ldif b/mayor-orig/mayor-installer-sulix/install/mayor-installer-sulix/ldap/user.ldif new file mode 100644 index 00000000..5f8824f0 --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/install/mayor-installer-sulix/ldap/user.ldif @@ -0,0 +1,49 @@ +# mayoradmin, People, vmayort.hu +dn: uid=mayoradmin,ou=People,dc=vmayort,dc=hu +uid: mayoradmin +sn: mayoradmin +cn: mayoradmin +uidNumber: 10000 +gidNumber: 500 +homeDirectory: /home/mayor +preferredLanguage: HU +o:: VsOhcm9zbWFqb3JpIFRlc3p0IEdpbW7DoXppdW0= +c: HU +OXGroupID: 500 +loginShell: /bin/bash +shadowLastChange: 15393 +shadowMax: 99999 +shadowMin: 0 +shadowWarning: 7 +shadowInactive: 0 +phpgwAccountType: u +phpgwAccountStatus: A +phpgwAccountExpires: -1 +OXTaskDays: 5 +OXAppointmentDays: 5 +mailEnabled: ok +internetDisabled: false +objectClass: top +objectClass: shadowAccount +objectClass: posixAccount +objectClass: person +objectClass: inetOrgPerson +objectClass: OXUserObject +objectClass: phpgwAccount +objectClass: SchoolAccount +objectClass: MailRecipient +objectClass: organizationalPerson +objectClass: sambaSamAccount +sambaSID: S-1-5-21-3317027340-1707170271-2205240687-1001 +displayName: admin +sambaLMPassword: 5918854540F40002AAD3B435B51404EE +sambaNTPassword: F05F2E35765692F94D23CC3F3691C94E +sambaPasswordHistory: 00000000000000000000000000000000000000000000000000000000 + 00000000 +sambaPwdLastSet: 1330016069 +sambaAcctFlags: [U ] +mailDomain: vmayort.hu +imapServer: mailserver.vmayort.hu +smtpServer: mailserver.vmayort.hu +imapPort: 143 +sievePort: 4190 diff --git a/mayor-orig/mayor-installer-sulix/install/setup b/mayor-orig/mayor-installer-sulix/install/setup new file mode 100755 index 00000000..a293dab6 --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/install/setup @@ -0,0 +1,38 @@ +#!/bin/bash +clear +echo "-------------------------------------------" +echo " MaYoR Setup " +echo "-------------------------------------------" + +MAYORDIR="/srv/mayor" +TMPDIR="/tmp" +TGZDIR="/root/mayor/tgz" +MYSQLROOTPW=$(tdbdump /var/lib/samba/private/secrets.tdb | grep -A 2 LDAP_BIND_PW | grep data | sed -e 's/\\00"//' -e 's/^.*"//') +VERSION="current" +SCHOOLSERVERCONF="/etc/sysconfig/schoolserver" +export SCHOOLSERVERCONF +export MAYORDIR +export TMPDIR +export TGZDIR +export MYSQLROOTPW +export VERSION + +# --------- Ez a main.conf-ban bent van - jobb lenne itt nem megadni... + +BACKUPDIR=/backup/mayor/ +export BACKUPDIR +BASEDN=$(grep LDAPBASE $SCHOOLSERVERCONF | sed -e 's/LDAPBASE="//' -e 's/"//') +export BASEDN + +function mypwgen() { eval 'head /dev/urandom | tr -dc A-Za-z0-9_ | head -c8'; } +export -f mypwgen + +echo -e "A MaYoR keretrendszer és elektronikus napló telepítője...\n" + +for f in install.d/* +do + echo -e "\n----------------------------------------------\n$f\n----------------------------------------------\n" + ./$f $@ +done + +echo -e "MaYoR (c) setup 2012.\n" diff --git a/mayor-orig/mayor-installer-sulix/log/mayor-installer-sulix.rev b/mayor-orig/mayor-installer-sulix/log/mayor-installer-sulix.rev new file mode 100644 index 00000000..ab5135de --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/log/mayor-installer-sulix.rev @@ -0,0 +1 @@ +4455 diff --git a/mayor-orig/mayor-installer-sulix/www/skin/classic/module-portal/config.php.sulix b/mayor-orig/mayor-installer-sulix/www/skin/classic/module-portal/config.php.sulix new file mode 100644 index 00000000..fe68ca47 --- /dev/null +++ b/mayor-orig/mayor-installer-sulix/www/skin/classic/module-portal/config.php.sulix @@ -0,0 +1,10 @@ + + + '; +} + +?> \ No newline at end of file -- cgit v1.2.3