cgi/: fix a pervasive spelling mistake
[girocco.git] / install.sh
blob0d3f4bdee5590b3b8806d07263dbdb77df84925c
1 #!/bin/sh
2 # The Girocco installation script
3 # We will OVERWRITE basedir!
5 set -e
7 # What Config should we use?
8 [ -n "$GIROCCO_CONF" ] || GIROCCO_CONF=Girocco::Config
9 echo "*** Initializing using $GIROCCO_CONF..."
11 # First run Girocco::Config consistency checks
12 perl -I. -M$GIROCCO_CONF -e ''
14 . ./shlib.sh
16 owngroup=""
17 [ -z "$cfg_owning_group" ] || owngroup=".$cfg_owning_group"
20 echo "*** Setting up basedir..."
21 rm -fr "$cfg_basedir"
22 mkdir -p "$cfg_basedir"
23 cp -a Girocco jobd taskd fixupd gitweb html jobs toolbox hooks apache.conf shlib.sh "$cfg_basedir"
25 # Put the correct Config in place
26 [ "$GIROCCO_CONF" = "Girocco::Config" ] || cp "$(echo "$GIROCCO_CONF" | sed 's#::#/#g; s/$/.pm/')" "$cfg_basedir/Girocco/Config.pm"
29 echo "*** Preprocessing scripts..."
30 perl -I. -M$GIROCCO_CONF -i -pe 's/\@basedir\@/"$Girocco::Config::basedir"/g' "$cfg_basedir"/jobs/*.sh "$cfg_basedir"/jobd/*.sh "$cfg_basedir"/taskd/*.sh "$cfg_basedir"/gitweb/*.sh "$cfg_basedir"/shlib.sh "$cfg_basedir"/hooks/*
33 if [ -n "$cfg_mirror" ]; then
34 echo "--- Remember to start $cfg_basedir/taskd/taskd.pl"
36 if [ -n "$cfg_push" -a "$cfg_permission_control" = "Group" ]; then
37 echo "Creating FIFO for fixupd: $cfg_fixup_queue"
38 [ -p "$cfg_fixup_queue" ] || mkfifo "$cfg_fixup_queue"
39 chown "$cfg_cgi_user""$owngroup" "$cfg_fixup_queue" ||
40 echo "WARNING: Cannot chown $cfg_cgi_user.$cfg_owning_group $cfg_fixup_queue"
41 chmod ug+rw "$cfg_fixup_queue" ||
42 echo "WARNING: Cannot chmod $cfg_fixup_queue"
43 echo "--- Remember to copy $cfg_basedir/fixupd/ to /root and start fixupd.sh as root"
45 echo "--- Also remember to either start $cfg_basedir/jobd/jobd.sh, or add this"
46 echo "--- to the crontab of $cfg_mirror_user (adjust frequency on number of repos):"
47 echo "*/30 * * * * /usr/bin/nice -n 18 $cfg_basedir/jobd/jobd.sh -q --all-once"
50 echo "*** Setting up repository root..."
51 mkdir -p "$cfg_reporoot"
52 if [ "$cfg_owning_group" ]; then
53 chown ."$cfg_owning_group" "$cfg_reporoot" || echo "WARNING: Cannot chgrp $cfg_owning_group $cfg_reporoot"
55 chmod a+rwx,g+s,o+t "$cfg_reporoot" || echo "WARNING: Cannot chmod $cfg_reporoot properly"
58 if [ -n "$cfg_chrooted" ]; then
59 echo "*** Setting up chroot jail for pushing..."
60 if [ "$(id -u)" -eq 0 ]; then
61 ./jailsetup.sh
62 else
63 echo "WARNING: Skipping jail setup, not root"
68 echo "*** Setting up jail configuration (project database)..."
69 mkdir -p "$cfg_chroot" "$cfg_chroot/etc"
70 touch "$cfg_chroot/etc/passwd" "$cfg_chroot/etc/group"
71 chown "$cfg_cgi_user""$owngroup" "$cfg_chroot/etc" ||
72 echo "WARNING: Cannot chown $cfg_cgi_user.$cfg_owning_group the files"
73 chmod 02775 "$cfg_chroot/etc" || echo "WARNING: Cannot chmod 02775 $cfg_chroot/etc"
76 echo "*** Setting up gitweb from git.git..."
77 if [ ! -f git.git/Makefile ]; then
78 echo "ERROR: git.git is not checked out! Did you _REALLY_ read INSTALL?" >&2
79 exit 1;
81 mkdir -p "$cfg_webroot" "$cfg_cgiroot"
82 (cd git.git && make --quiet gitweb/gitweb.cgi && cp gitweb/gitweb.cgi "$cfg_cgiroot" \
83 && cp gitweb/*.png gitweb/*.css gitweb/*.js "$cfg_webroot")
86 echo "*** Setting up git-browser from git-browser.git..."
87 if [ ! -f git-browser.git/git-browser.cgi ]; then
88 echo "ERROR: git-browser.git is not checked out! Did you _REALLY_ read INSTALL?" >&2
89 exit 1;
91 mkdir -p "$cfg_webroot"/git-browser "$cfg_cgiroot"
92 (cd git-browser.git && cp git-browser.cgi "$cfg_cgiroot" \
93 && cp -r *.html *.js *.css js.lib/ JSON/ "$cfg_webroot"/git-browser)
94 ln -sf "$cfg_webroot/git-browser/JSON" "$cfg_cgiroot"
95 cat >"$cfg_cgiroot"/git-browser.conf <<EOT
96 gitbin: $cfg_git_bin
97 warehouse: $cfg_reporoot
98 EOT
99 cat >"$cfg_webroot"/git-browser/GitConfig.js <<EOT
100 cfg_gitweb_url="$cfg_gitweburl/"
101 cfg_browsercgi_url="$cfg_webadmurl/git-browser.cgi"
105 echo "*** Setting up darcs-fast-export from bzr-fastimport.git..."
106 if [ ! -d bzr-fastimport.git/exporters/darcs/ ]; then
107 echo "ERROR: bzr-fastimport.git is not checked out! Did you _REALLY_ read INSTALL?" >&2
108 exit 1;
110 mkdir -p "$cfg_basedir"/bin
111 cp bzr-fastimport.git/exporters/darcs/darcs-fast-export "$cfg_basedir"/bin
114 echo "*** Setting up our part of the website..."
115 mkdir -p "$cfg_webroot" "$cfg_cgiroot"
116 cp cgi/*.cgi gitweb/gitweb_config.perl "$cfg_cgiroot"
117 ln -fs "$cfg_basedir"/Girocco "$cfg_cgiroot"
118 [ -z "$cfg_webreporoot" ] || { rm -f "$cfg_webreporoot" && ln -s "$cfg_reporoot" "$cfg_webreporoot"; }
119 cp gitweb/indextext.html "$cfg_webroot"
120 mv "$cfg_basedir"/html/*.css "$cfg_basedir"/html/*.js "$cfg_webroot"
121 cp mootools.js "$cfg_webroot"
122 cp htaccess "$cfg_webroot/.htaccess"
123 cat gitweb/gitweb.css >>"$cfg_webroot"/gitweb.css