--- doc/install/linux/install.pl 2011/05/22 11:56:15 1.14 +++ doc/install/linux/install.pl 2011/05/31 13:29:46 1.19 @@ -72,7 +72,7 @@ if (!open(LOG,">>loncapa_install.log")) &mt('Stopping execution.')."\n"; exit; } else { - print LOG '$Id: install.pl,v 1.14 2011/05/22 11:56:15 raeburn Exp $'."\n"; + print LOG '$Id: install.pl,v 1.19 2011/05/31 13:29:46 raeburn Exp $'."\n"; } # @@ -500,6 +500,17 @@ sub chkconfig { my $nrlstr = join('',@norunlevels); foreach my $type ('apache','mysql','ntp','cups','memcached') { my $service = $daemon{$type}; + if ($type eq 'ntp') { + if ($distro =~ /^(?:fedora)(\d+)/) { + my $version = $1; + if ($version >= 15) { + if (!-l "/etc/systemd/system/multi-user.target.wants/ntpd.service") { + $needfix{$type} = 'systemctl enable ntpd.service'; + } + next; + } + } + } my $command = $checker_bin.' --list '.$service.' 2>/dev/null'; if ($type eq 'cups') { if ($distro =~ /^(?:debian|ubuntu)(\d+)/) { @@ -600,11 +611,11 @@ sub chkapache { my ($distro,$instdir) = @_; my $fixapache = 1; if ($distro =~ /^(debian|ubuntu)/) { - if (!-e "$instdir/debian-ubuntu/apache2.conf") { + if (!-e "$instdir/debian-ubuntu/loncapa") { $fixapache = 0; print &mt('Warning: No LON-CAPA Apache configuration file found for installation check.')."\n"; - } elsif ((-e "/etc/apache2/sites-available/loncapa") && (-e "$instdir/debian-ubuntu/apache2.conf")) { - if (open(PIPE, "diff --brief $instdir/debian-ubuntu/apache2.conf /etc/apache2/sites-available/loncapa |")) { + } elsif ((-e "/etc/apache2/sites-available/loncapa") && (-e "$instdir/debian-ubuntu/loncapa")) { + if (open(PIPE, "diff --brief $instdir/debian-ubuntu/loncapa /etc/apache2/sites-available/loncapa |")) { my $diffres = ; close(PIPE); chomp($diffres); @@ -660,7 +671,7 @@ sub chkapache { } } elsif ($distro =~ /^fedora(\d+)$/) { if ($1 > 10) { - $conftype = 'new/httpd.conf'; + $configfile = 'new/httpd.conf'; } } if (!-e "$instdir/centos-rhes-fedora-sl/$configfile") { @@ -699,10 +710,10 @@ sub chksrvcs { close(PIPE); if ($daemonrunning) { if ($service eq 'memcached') { - my $cmd = '/usr/sbin/memcached'; - if ($distro =~ /^centos|fedora|scientific|rhes/) { - $cmd = '/usr/bin/memcached'; - } + my $cmd = '/usr/bin/memcached'; + if ($distro =~ /^(suse|sles)/) { + $cmd = '/usr/sbin/memcached'; + } unless ($daemonrunning =~ m{^www[^/]+\Q$cmd -m 400 -v\E$}) { $stopsrvcs{$service} = 1; } @@ -1569,7 +1580,7 @@ sub setup_mysql { } push(@mysql_lc_commands,"USE loncapa"); push(@mysql_lc_commands,qq{ -CREATE TABLE IF NOT EXISTS metadata (title TEXT, author TEXT, subject TEXT, url TEXT, keywords TEXT, version TEXT, notes TEXT, abstract TEXT, mime TEXT, language TEXT, creationdate DATETIME, lastrevisiondate DATETIME, owner TEXT, copyright TEXT, domain TEXT, dependencies TEXT, modifyinguser TEXT, authorspace TEXT, lowestgradelevel TEXT, highestgradelevel TEXT, standards TEXT, count INT, course INT, course_list TEXT, goto INT, goto_list TEXT, comefrom INT, comefrom_list TEXT, sequsage INT, sequsage_list TEXT, stdno INT, stdno_list TEXT, avetries FLOAT, avetries_list TEXT, difficulty FLOAT, difficulty_list TEXT, disc FLOAT, disc_list TEXT, clear FLOAT, technical FLOAT, correct FLOAT, helpful FLOAT, depth FLOAT, hostname TEXT, FULLTEXT idx_title (title), FULLTEXT idx_author (author), FULLTEXT idx_subject (subject), FULLTEXT idx_url (url), FULLTEXT idx_keywords (keywords), FULLTEXT idx_version (version), FULLTEXT idx_notes (notes), FULLTEXT idx_abstract (abstract), FULLTEXT idx_mime (mime), FULLTEXT idx_language (language), FULLTEXT idx_owner (owner), FULLTEXT idx_copyright (copyright)) TYPE=MYISAM +CREATE TABLE IF NOT EXISTS metadata (title TEXT, author TEXT, subject TEXT, url TEXT, keywords TEXT, version TEXT, notes TEXT, abstract TEXT, mime TEXT, language TEXT, creationdate DATETIME, lastrevisiondate DATETIME, owner TEXT, copyright TEXT, domain TEXT, dependencies TEXT, modifyinguser TEXT, authorspace TEXT, lowestgradelevel TEXT, highestgradelevel TEXT, standards TEXT, count INT, course INT, course_list TEXT, goto INT, goto_list TEXT, comefrom INT, comefrom_list TEXT, sequsage INT, sequsage_list TEXT, stdno INT, stdno_list TEXT, avetries FLOAT, avetries_list TEXT, difficulty FLOAT, difficulty_list TEXT, disc FLOAT, disc_list TEXT, clear FLOAT, technical FLOAT, correct FLOAT, helpful FLOAT, depth FLOAT, hostname TEXT, FULLTEXT idx_title (title), FULLTEXT idx_author (author), FULLTEXT idx_subject (subject), FULLTEXT idx_url (url), FULLTEXT idx_keywords (keywords), FULLTEXT idx_version (version), FULLTEXT idx_notes (notes), FULLTEXT idx_abstract (abstract), FULLTEXT idx_mime (mime), FULLTEXT idx_language (language), FULLTEXT idx_owner (owner), FULLTEXT idx_copyright (copyright)) ENGINE=MYISAM }); if ($setup_mysql_permissions) { &setup_mysql_permissions($dbh,$has_pass,@mysql_lc_commands); @@ -1720,7 +1731,7 @@ sub copy_httpd_conf { ######################################################### ## -## Ubuntu/Debian -- copy our apache2 configuration file to +## Ubuntu/Debian -- copy our loncapa configuration file to ## sites-available and set the symlink from sites-enabled. ## ######################################################### @@ -1736,7 +1747,7 @@ sub copy_apache2_debconf { if (-e "$apache2_sites_available_dir/loncapa") { copy("$apache2_sites_available_dir/loncapa","$apache2_sites_available_dir/loncapa.original"); } - copy("$instdir/debian-ubuntu/apache2.conf","$apache2_sites_available_dir/loncapa"); + copy("$instdir/debian-ubuntu/loncapa","$apache2_sites_available_dir/loncapa"); chmod(0444,"$apache2_sites_available_dir/loncapa"); symlink("$apache2_sites_available_dir/loncapa","$apache2_sites_enabled_dir/000-default"); my $apache2_mods_enabled_dir = '/etc/apache2/mods-enabled';