jobd: fix an invocation of error to use ferror
[girocco.git] / install.sh
blobed4838226402da27bc7f2f23dca404c61ac3f24c
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 -pR 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/* "$cfg_basedir"/toolbox/*
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$owngroup $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" "$cfg_reporoot-recyclebin"
52 if [ "$cfg_owning_group" ]; then
53 chown :"$cfg_owning_group" "$cfg_reporoot" || echo "WARNING: Cannot chgrp $cfg_owning_group $cfg_reporoot"
54 chown :"$cfg_owning_group" "$cfg_reporoot-recyclebin" || echo "WARNING: Cannot chgrp $cfg_owning_group $cfg_reporoot-recyclebin"
56 chmod 02775 "$cfg_reporoot" || echo "WARNING: Cannot chmod $cfg_reporoot properly"
57 chmod 02775 "$cfg_reporoot-recyclebin" || echo "WARNING: Cannot chmod $cfg_reporoot-recyclebin properly"
60 if [ -n "$cfg_chrooted" ]; then
61 echo "*** Setting up chroot jail for pushing..."
62 if [ "$(id -u)" -eq 0 ]; then
63 ./jailsetup.sh
64 else
65 echo "WARNING: Skipping jail setup, not root"
70 echo "*** Setting up jail configuration (project database)..."
71 mkdir -p "$cfg_chroot" "$cfg_chroot/etc"
72 touch "$cfg_chroot/etc/passwd" "$cfg_chroot/etc/group"
73 chown "$cfg_mirror_user""$owngroup" "$cfg_chroot/etc" ||
74 echo "WARNING: Cannot chown $cfg_mirror_user$owngroup $cfg_chroot/etc"
75 chown "$cfg_cgi_user""$owngroup" "$cfg_chroot/etc/passwd" "$cfg_chroot/etc/group" ||
76 echo "WARNING: Cannot chown $cfg_cgi_user$owngroup the files"
77 chmod g+w "$cfg_chroot/etc/passwd" "$cfg_chroot/etc/group" ||
78 echo "WARNING: Cannot chmod g+w the files"
79 chmod 02775 "$cfg_chroot/etc" || echo "WARNING: Cannot chmod 02775 $cfg_chroot/etc"
82 echo "*** Setting up gitweb from git.git..."
83 if [ ! -f git.git/Makefile ]; then
84 echo "ERROR: git.git is not checked out! Did you _REALLY_ read INSTALL?" >&2
85 exit 1;
87 mkdir -p "$cfg_webroot" "$cfg_cgiroot"
88 (cd git.git && make --quiet gitweb/gitweb.cgi && cp gitweb/gitweb.cgi "$cfg_cgiroot" \
89 && cp gitweb/*.png gitweb/*.css gitweb/*.js "$cfg_webroot")
92 echo "*** Setting up git-browser from git-browser.git..."
93 if [ ! -f git-browser.git/git-browser.cgi ]; then
94 echo "ERROR: git-browser.git is not checked out! Did you _REALLY_ read INSTALL?" >&2
95 exit 1;
97 mkdir -p "$cfg_webroot"/git-browser "$cfg_cgiroot"
98 (cd git-browser.git && cp git-browser.cgi "$cfg_cgiroot" \
99 && cp -r *.html *.js *.css js.lib/ JSON/ "$cfg_webroot"/git-browser)
100 ln -sf "$cfg_webroot/git-browser/JSON" "$cfg_cgiroot"
101 cat >"$cfg_cgiroot"/git-browser.conf <<EOT
102 gitbin: $cfg_git_bin
103 warehouse: $cfg_reporoot
105 cat >"$cfg_webroot"/git-browser/GitConfig.js <<EOT
106 cfg_gitweb_url="$cfg_gitweburl/"
107 cfg_browsercgi_url="$cfg_webadmurl/git-browser.cgi"
111 echo "*** Setting up darcs-fast-export from bzr-fastimport.git..."
112 if [ ! -d bzr-fastimport.git/exporters/darcs/ ]; then
113 echo "ERROR: bzr-fastimport.git is not checked out! Did you _REALLY_ read INSTALL?" >&2
114 exit 1;
116 mkdir -p "$cfg_basedir"/bin
117 cp bzr-fastimport.git/exporters/darcs/darcs-fast-export "$cfg_basedir"/bin
120 echo "*** Setting up our part of the website..."
121 mkdir -p "$cfg_webroot" "$cfg_cgiroot"
122 cp cgi/*.cgi gitweb/gitweb_config.perl "$cfg_cgiroot"
123 ln -fs "$cfg_basedir"/Girocco "$cfg_cgiroot"
124 [ -z "$cfg_webreporoot" ] || { rm -f "$cfg_webreporoot" && ln -s "$cfg_reporoot" "$cfg_webreporoot"; }
125 cp gitweb/indextext.html "$cfg_webroot"
126 mv "$cfg_basedir"/html/*.css "$cfg_basedir"/html/*.js "$cfg_webroot"
127 cp mootools.js "$cfg_webroot"
128 cp htaccess "$cfg_webroot/.htaccess"
129 cat gitweb/gitweb.css >>"$cfg_webroot"/gitweb.css
131 echo "*** Finalizing permissions..."
132 chown -R -h "$cfg_mirror_user""$owngroup" "$cfg_basedir" "$cfg_webroot" "$cfg_cgiroot"