436 lines
16 KiB
PHP
436 lines
16 KiB
PHP
<?php
|
|
|
|
/**
|
|
* This file is part of the Froxlor project.
|
|
* Copyright (c) 2003-2009 the SysCP Team (see authors).
|
|
* Copyright (c) 2010 the Froxlor Team (see authors).
|
|
*
|
|
* For the full copyright and license information, please view the COPYING
|
|
* file that was distributed with this source code. You can also view the
|
|
* COPYING file online at http://files.froxlor.org/misc/COPYING.txt
|
|
*
|
|
* @copyright (c) the authors
|
|
* @author Florian Lippert <flo@syscp.org> (2003-2009)
|
|
* @author Froxlor team <team@froxlor.org> (2010-)
|
|
* @license GPLv2 http://files.froxlor.org/misc/COPYING.txt
|
|
* @package Configfiles
|
|
*
|
|
*/
|
|
|
|
return Array(
|
|
'gentoo' => Array(
|
|
'label' => 'Gentoo',
|
|
'services' => Array(
|
|
'http' => Array(
|
|
'label' => $lng['admin']['configfiles']['http'],
|
|
'daemons' => Array(
|
|
'apache2' => Array(
|
|
'label' => 'Apache2 Webserver',
|
|
'commands' => Array(
|
|
$configcommand['vhost'],
|
|
'chown root:0 ' . $settings['system']['apacheconf_vhost'],
|
|
'chmod 0600 ' . $settings['system']['apacheconf_vhost'],
|
|
$configcommand['diroptions'],
|
|
'chown root:0 ' . $settings['system']['apacheconf_diroptions'],
|
|
'chmod 0600 ' . $settings['system']['apacheconf_diroptions'],
|
|
'mkdir -p ' . $settings['system']['documentroot_prefix'],
|
|
($settings['system']['deactivateddocroot'] != '') ? 'mkdir -p ' . $settings['system']['deactivateddocroot'] : '',
|
|
'mkdir -p ' . $settings['system']['logfiles_directory'],
|
|
'mkdir -p ' . $settings['system']['mod_fcgid_tmpdir'],
|
|
'chmod 1777 ' . $settings['system']['mod_fcgid_tmpdir']
|
|
),
|
|
'files' => ((int)$settings['phpfpm']['enabled'] == 1) ?
|
|
Array(
|
|
'etc_apache2_modules.d_70_fastcgi.conf' => '/etc/apache2/modules.d/70_fastcgi.conf'
|
|
)
|
|
:
|
|
null,
|
|
'restart' => Array(
|
|
'rc-update add apache2 default',
|
|
'/etc/init.d/apache2 restart'
|
|
)
|
|
),
|
|
'lighttpd' => Array(
|
|
'label' => 'Lighttpd Webserver',
|
|
'commands_1' => Array(
|
|
'emerge -av lighttpd'
|
|
),
|
|
'files' => Array(
|
|
'etc_lighttpd.conf' => '/etc/lighttpd/lighttpd.conf'
|
|
),
|
|
'commands_2' => Array(
|
|
$configcommand['vhost'],
|
|
$configcommand['diroptions'],
|
|
$configcommand['v_inclighty'],
|
|
$configcommand['d_inclighty'],
|
|
'mkdir -p ' . $settings['system']['documentroot_prefix'],
|
|
'mkdir -p ' . $settings['system']['logfiles_directory'],
|
|
($settings['system']['deactivateddocroot'] != '') ? 'mkdir -p ' . $settings['system']['deactivateddocroot'] : '',
|
|
'rc-update add lighttpd default'
|
|
),
|
|
'restart' => Array(
|
|
'/etc/init.d/lighttpd restart'
|
|
)
|
|
),
|
|
'nginx' => Array(
|
|
'label' => 'Nginx Webserver',
|
|
'commands_1' => Array(
|
|
'emerge nginx',
|
|
),
|
|
'files' => Array(
|
|
'etc_nginx_nginx.conf' => '/etc/nginx/nginx.conf',
|
|
'etc_init.d_php-fcgi' => '/etc/init.d/php-fcgi'
|
|
),
|
|
'commands_2' => Array(
|
|
'mkdir -p ' . $settings['system']['documentroot_prefix'],
|
|
'mkdir -p ' . $settings['system']['logfiles_directory'],
|
|
'mkdir -p ' . $settings['system']['deactivateddocroot'],
|
|
'mkdir -p ' . $settings['system']['mod_fcgid_tmpdir'],
|
|
'chmod 1777 ' . $settings['system']['mod_fcgid_tmpdir'],
|
|
'chmod u+x /etc/init.d/php-fcgi',
|
|
'rc-update add nginx default'
|
|
),
|
|
'restart' => Array(
|
|
'/etc/init.d/nginx restart'
|
|
)
|
|
),
|
|
)
|
|
),
|
|
'dns' => Array(
|
|
'label' => $lng['admin']['configfiles']['dns'],
|
|
'daemons' => Array(
|
|
'bind' => Array(
|
|
'label' => 'Bind9 Nameserver',
|
|
'files' => Array(
|
|
'etc_bind_default.zone' => '/etc/bind/default.zone'
|
|
),
|
|
'commands' => Array(
|
|
'echo "include \"' . $settings['system']['bindconf_directory'] . 'froxlor_bind.conf\";" >> /etc/bind/named.conf',
|
|
'touch ' . $settings['system']['bindconf_directory'] . 'froxlor_bind.conf',
|
|
'chown named:0 ' . $settings['system']['bindconf_directory'] . 'froxlor_bind.conf',
|
|
'chmod 0600 ' . $settings['system']['bindconf_directory'] . 'froxlor_bind.conf',
|
|
'rc-update add named default'
|
|
),
|
|
'restart' => Array(
|
|
'/etc/init.d/named restart'
|
|
)
|
|
),
|
|
)
|
|
),
|
|
'smtp' => Array(
|
|
'label' => $lng['admin']['configfiles']['smtp'],
|
|
'daemons' => Array(
|
|
'postfix_courier' => Array(
|
|
'label' => 'Postfix/Courier',
|
|
'commands_1' => Array(
|
|
'echo "mail-mta/postfix -dovecot-sasl sasl" >> /etc/portage/package.use',
|
|
'emerge -av postfix',
|
|
'mkdir -p ' . $settings['system']['vmail_homedir'],
|
|
'chown -R vmail:vmail ' . $settings['system']['vmail_homedir'],
|
|
'chmod 0750 ' . $settings['system']['vmail_homedir'],
|
|
'mv /etc/postfix/main.cf /etc/postfix/main.cf.gentoo',
|
|
'touch /etc/postfix/main.cf',
|
|
'touch /etc/postfix/mysql-virtual_alias_maps.cf',
|
|
'touch /etc/postfix/mysql-virtual_mailbox_domains.cf',
|
|
'touch /etc/postfix/mysql-virtual_mailbox_maps.cf',
|
|
'touch /etc/postfix/mysql-virtual_sender_permissions.cf',
|
|
'touch /etc/sasl2/smtpd.conf',
|
|
'chown root:root /etc/postfix/main.cf',
|
|
'chown root:postfix /etc/postfix/mysql-virtual_alias_maps.cf',
|
|
'chown root:postfix /etc/postfix/mysql-virtual_mailbox_domains.cf',
|
|
'chown root:postfix /etc/postfix/mysql-virtual_mailbox_maps.cf',
|
|
'chown root:postfix /etc/postfix/mysql-virtual_sender_permissions.cf',
|
|
'chown root:root /etc/sasl2/smtpd.conf',
|
|
'chmod 0644 /etc/postfix/main.cf',
|
|
'chmod 0640 /etc/postfix/mysql-virtual_alias_maps.cf',
|
|
'chmod 0640 /etc/postfix/mysql-virtual_mailbox_domains.cf',
|
|
'chmod 0640 /etc/postfix/mysql-virtual_mailbox_maps.cf',
|
|
'chmod 0640 /etc/postfix/mysql-virtual_sender_permissions.cf',
|
|
'chmod 0600 /etc/sasl2/smtpd.conf',
|
|
),
|
|
'files' => Array(
|
|
'etc_postfix_main.cf' => '/etc/postfix/main.cf',
|
|
'etc_postfix_mysql-virtual_alias_maps.cf' => '/etc/postfix/mysql-virtual_alias_maps.cf',
|
|
'etc_postfix_mysql-virtual_mailbox_domains.cf' => '/etc/postfix/mysql-virtual_mailbox_domains.cf',
|
|
'etc_postfix_mysql-virtual_mailbox_maps.cf' => '/etc/postfix/mysql-virtual_mailbox_maps.cf',
|
|
'etc_postfix_mysql-virtual_sender_permissions.cf' => '/etc/postfix/mysql-virtual_sender_permissions.cf',
|
|
'etc_sasl2_smtpd.conf' => '/etc/sasl2/smtpd.conf'
|
|
),
|
|
'commands_2' => Array(
|
|
'rc-update add postfix default'
|
|
),
|
|
'restart' => Array(
|
|
'/etc/init.d/postfix restart'
|
|
)
|
|
),
|
|
'postfix_dovecot' => Array(
|
|
'label' => 'Postfix/Dovecot',
|
|
'commands_1' => Array(
|
|
'echo "mail-mta/postfix dovecot-sasl -sasl" >> /etc/portage/package.use',
|
|
'emerge -av postfix',
|
|
'mkdir -p ' . $settings['system']['vmail_homedir'],
|
|
'chown -R vmail:vmail ' . $settings['system']['vmail_homedir'],
|
|
'chmod 0750 ' . $settings['system']['vmail_homedir'],
|
|
'mv /etc/postfix/main.cf /etc/postfix/main.cf.gentoo',
|
|
'touch /etc/postfix/main.cf',
|
|
'touch /etc/postfix/master.cf',
|
|
'touch /etc/postfix/mysql-virtual_alias_maps.cf',
|
|
'touch /etc/postfix/mysql-virtual_mailbox_domains.cf',
|
|
'touch /etc/postfix/mysql-virtual_mailbox_maps.cf',
|
|
'touch /etc/postfix/mysql-virtual_sender_permissions.cf',
|
|
'chown root:root /etc/postfix/main.cf',
|
|
'chown root:root /etc/postfix/master.cf',
|
|
'chown root:postfix /etc/postfix/mysql-virtual_alias_maps.cf',
|
|
'chown root:postfix /etc/postfix/mysql-virtual_mailbox_domains.cf',
|
|
'chown root:postfix /etc/postfix/mysql-virtual_mailbox_maps.cf',
|
|
'chown root:postfix /etc/postfix/mysql-virtual_sender_permissions.cf',
|
|
'chmod 0644 /etc/postfix/main.cf',
|
|
'chmod 0644 /etc/postfix/master.cf',
|
|
'chmod 0640 /etc/postfix/mysql-virtual_alias_maps.cf',
|
|
'chmod 0640 /etc/postfix/mysql-virtual_mailbox_domains.cf',
|
|
'chmod 0640 /etc/postfix/mysql-virtual_mailbox_maps.cf',
|
|
'chmod 0640 /etc/postfix/mysql-virtual_sender_permissions.cf'
|
|
),
|
|
'files' => Array(
|
|
'etc_postfix_main.cf' => '/etc/postfix/main.cf',
|
|
'etc_postfix_master.cf' => '/etc/postfix/master.cf',
|
|
'etc_postfix_mysql-virtual_alias_maps.cf' => '/etc/postfix/mysql-virtual_alias_maps.cf',
|
|
'etc_postfix_mysql-virtual_mailbox_domains.cf' => '/etc/postfix/mysql-virtual_mailbox_domains.cf',
|
|
'etc_postfix_mysql-virtual_mailbox_maps.cf' => '/etc/postfix/mysql-virtual_mailbox_maps.cf',
|
|
'etc_postfix_mysql-virtual_sender_permissions.cf' => '/etc/postfix/mysql-virtual_sender_permissions.cf'
|
|
),
|
|
'commands_2' => Array(
|
|
'rc-update add postfix default'
|
|
),
|
|
'restart' => Array(
|
|
'/etc/init.d/postfix restart'
|
|
)
|
|
),
|
|
'postfix_mxaccess' => Array(
|
|
'label' => 'Postfix MX-Access (anti spam)',
|
|
'files' => Array(
|
|
'etc_postfix_mx_access' => '/etc/postfix/mx_access',
|
|
'etc_postfix_main.cf' => '/etc/postfix/main.cf'
|
|
),
|
|
'commands_1' => Array(
|
|
'postmap /etc/postfix/mx_access'
|
|
),
|
|
'restart' => Array(
|
|
'newaliases',
|
|
'/etc/init.d/postfix restart'
|
|
)
|
|
),
|
|
'dkim' => Array(
|
|
'label' => 'DomainKey filter',
|
|
'commands_1' => Array(
|
|
'emerge dkim-milter',
|
|
'emerge --config mail-filter/dkim-milter',
|
|
'mkdir -p /etc/postfix/dkim'
|
|
),
|
|
'files' => Array(
|
|
'dkim-filter.conf' => '/etc/mail/dkim-filter/dkim-filter.conf'
|
|
),
|
|
'commands_2' => Array(
|
|
'echo "smtpd_milters = inet:localhost:8891
|
|
milter_macro_daemon_name = SIGNING
|
|
milter_default_action = accept" >> /etc/postfix/main.cf',
|
|
'rc-update add dkim-filter default'
|
|
),
|
|
'restart' => Array(
|
|
'/etc/init.d/postfix restart'
|
|
)
|
|
)
|
|
)
|
|
),
|
|
'mail' => Array(
|
|
'label' => $lng['admin']['configfiles']['mail'],
|
|
'daemons' => Array(
|
|
'courier' => Array(
|
|
'label' => 'Courier-IMAP (POP3/IMAP)',
|
|
'commands_1' => Array(
|
|
'rm /etc/courier/authlib/authdaemonrc',
|
|
'rm /etc/courier/authlib/authmysqlrc',
|
|
'rm /etc/courier-imap/pop3d',
|
|
'rm /etc/courier-imap/imapd',
|
|
'rm /etc/courier-imap/pop3d-ssl',
|
|
'rm /etc/courier-imap/imapd-ssl',
|
|
'touch /etc/courier/authlib/authdaemonrc',
|
|
'touch /etc/courier/authlib/authmysqlrc',
|
|
'touch /etc/courier-imap/pop3d',
|
|
'touch /etc/courier-imap/imapd',
|
|
'touch /etc/courier-imap/pop3d-ssl',
|
|
'touch /etc/courier-imap/imapd-ssl'
|
|
),
|
|
'files' => Array(
|
|
'etc_courier_authlib_authdaemonrc' => '/etc/courier/authlib/authdaemonrc',
|
|
'etc_courier_authlib_authmysqlrc' => '/etc/courier/authlib/authmysqlrc',
|
|
'etc_courier-imap_pop3d' => '/etc/courier-imap/pop3d',
|
|
'etc_courier-imap_imapd' => '/etc/courier-imap/imapd',
|
|
'etc_courier-imap_pop3d-ssl' => '/etc/courier-imap/pop3d-ssl',
|
|
'etc_courier-imap_imapd-ssl' => '/etc/courier-imap/imapd-ssl'
|
|
),
|
|
'commands_2' => Array(
|
|
'chown root:0 /etc/courier/authlib/authdaemonrc',
|
|
'chown root:0 /etc/courier/authlib/authmysqlrc',
|
|
'chown root:0 /etc/courier-imap/pop3d',
|
|
'chown root:0 /etc/courier-imap/imapd',
|
|
'chown root:0 /etc/courier-imap/pop3d-ssl',
|
|
'chown root:0 /etc/courier-imap/imapd-ssl',
|
|
'chmod 0600 /etc/courier/authlib/authdaemonrc',
|
|
'chmod 0600 /etc/courier/authlib/authmysqlrc',
|
|
'chmod 0600 /etc/courier-imap/pop3d',
|
|
'chmod 0600 /etc/courier-imap/imapd',
|
|
'chmod 0600 /etc/courier-imap/pop3d-ssl',
|
|
'chmod 0600 /etc/courier-imap/imapd-ssl',
|
|
'rc-update add courier-authlib default',
|
|
'rc-update add courier-pop3d default',
|
|
'rc-update add courier-imapd default'
|
|
),
|
|
'restart' => Array(
|
|
'/etc/init.d/courier-authlib restart',
|
|
'/etc/init.d/courier-pop3d restart',
|
|
'/etc/init.d/courier-imapd restart'
|
|
)
|
|
),
|
|
'dovecot' => Array(
|
|
'label' => 'Dovecot 1',
|
|
'commands_1' => Array(
|
|
'emerge -av dovecot',
|
|
'mv dovecot.conf dovecot.conf.gentoo',
|
|
'mv dovecot-sql.conf dovecot-sql.conf.gentoo',
|
|
'touch dovecot.conf',
|
|
'touch dovecot-sql.conf',
|
|
),
|
|
'files' => Array(
|
|
'etc_dovecot_dovecot.conf' => '/etc/dovecot/dovecot.conf',
|
|
'etc_dovecot_dovecot-sql.conf' => '/etc/dovecot/dovecot-sql.conf'
|
|
),
|
|
'commands_2' => Array(
|
|
'chmod 0640 /etc/dovecot/dovecot-sql.conf',
|
|
'rc-update add dovecot default'
|
|
),
|
|
'restart' => Array(
|
|
'/etc/init.d/dovecot restart'
|
|
)
|
|
),
|
|
'dovecot2' => Array(
|
|
'label' => 'Dovecot 2',
|
|
'commands_1' => Array(
|
|
'emerge -av dovecot',
|
|
'mv dovecot.conf dovecot.conf.gentoo',
|
|
'mv dovecot-sql.conf dovecot-sql.conf.gentoo',
|
|
'touch dovecot.conf',
|
|
'touch dovecot-sql.conf',
|
|
),
|
|
'files' => Array(
|
|
'etc_dovecot_dovecot.conf' => '/etc/dovecot/dovecot.conf',
|
|
'etc_dovecot_dovecot-sql.conf' => '/etc/dovecot/dovecot-sql.conf'
|
|
),
|
|
'commands_2' => Array(
|
|
'chmod 0640 /etc/dovecot/dovecot-sql.conf',
|
|
'rc-update add dovecot default'
|
|
),
|
|
'restart' => Array(
|
|
'/etc/init.d/dovecot restart'
|
|
)
|
|
)
|
|
)
|
|
),
|
|
'ftp' => Array(
|
|
'label' => $lng['admin']['configfiles']['ftp'],
|
|
'daemons' => Array(
|
|
'proftpd' => Array(
|
|
'label' => 'ProFTPd',
|
|
'commands_1' => Array(
|
|
'emerge -av proftpd'
|
|
),
|
|
'files' => Array(
|
|
'etc_proftpd_proftpd.conf' => '/etc/proftpd/proftpd.conf'
|
|
),
|
|
'commands_2' => Array(
|
|
'touch /etc/proftpd/proftpd.conf',
|
|
'chown root:0 /etc/proftpd/proftpd.conf',
|
|
'chmod 0600 /etc/proftpd/proftpd.conf',
|
|
'rc-update add proftpd default'
|
|
),
|
|
'restart' => Array(
|
|
'/etc/init.d/proftpd restart'
|
|
)
|
|
),
|
|
'pureftpd' => Array(
|
|
'label' => 'PureFTPD',
|
|
'commands_1' => Array(
|
|
'emerge pure-ftpd'
|
|
),
|
|
'files' => Array(
|
|
'etc_conf.d_pure-ftpd' => '/etc/conf.d/pure-ftpd',
|
|
'etc_pureftpd-mysql.conf' => '/etc/pureftpd-mysql.conf'
|
|
),
|
|
'commands_2' => Array(
|
|
'chown root:0 /etc/conf.d/pure-ftpd',
|
|
'chmod 0644 /etc/conf.d/pure-ftpd',
|
|
'chown root:0 /etc/pureftpd-mysql.conf',
|
|
'chmod 0600 /etc/pureftpd-mysql.conf',
|
|
'rc-update add pure-ftpd default'
|
|
),
|
|
'restart' => Array(
|
|
'/etc/init.d/pure-ftpd restart'
|
|
)
|
|
)
|
|
)
|
|
),
|
|
'etc' => Array(
|
|
'label' => $lng['admin']['configfiles']['etc'],
|
|
'daemons' => Array(
|
|
'cron' => Array(
|
|
'label' => 'Crond (cronscript)',
|
|
'commands_1' => Array(
|
|
'emerge -av vixie-cron',
|
|
'touch /etc/cron.d/froxlor',
|
|
'chown root:0 /etc/cron.d/froxlor',
|
|
'chmod 0640 /etc/cron.d/froxlor'
|
|
),
|
|
'files' => Array(
|
|
'etc_cron.d_froxlor' => '/etc/cron.d/froxlor'
|
|
),
|
|
'commands_2' => Array(
|
|
'rc-update add vixie-cron default'
|
|
),
|
|
'restart' => Array(
|
|
'/etc/init.d/vixie-cron restart'
|
|
)
|
|
),
|
|
'awstats' => Array(
|
|
'label' => 'Awstats',
|
|
'commands' => Array(
|
|
'emerge awstats',
|
|
'awstats_configure.pl',
|
|
'sed -i.bak \'s/^DirData/# DirData/\' '.makeCorrectFile($settings['system']['awstats_conf'].'/awstats.model.conf')
|
|
),
|
|
),
|
|
'libnss' => Array(
|
|
'label' => 'libnss (system login with mysql)',
|
|
'commands_1' => Array(
|
|
'emerge -av libnss-mysql'
|
|
),
|
|
'files' => Array(
|
|
'etc_libnss-mysql.cfg' => '/etc/libnss-mysql.cfg',
|
|
'etc_libnss-mysql-root.cfg' => '/etc/libnss-mysql-root.cfg',
|
|
'etc_nsswitch.conf' => '/etc/nsswitch.conf',
|
|
),
|
|
'commands_2' => Array(
|
|
'chmod 600 /etc/libnss-mysql.cfg /etc/libnss-mysql-root.cfg',
|
|
'rc-update add nscd default'
|
|
),
|
|
'restart' => Array(
|
|
'/etc/init.d/nscd restart'
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
);
|
|
|
|
?>
|