2 # The Girocco installation script
3 # We will OVERWRITE basedir!
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 ''
17 [ -z "$cfg_owning_group" ] || owngroup
=":$cfg_owning_group"
20 echo "*** Setting up 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
/*
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"
52 if [ "$cfg_owning_group" ]; then
53 chown
:"$cfg_owning_group" "$cfg_reporoot" ||
echo "WARNING: Cannot chgrp $cfg_owning_group $cfg_reporoot"
55 chmod 02775 "$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
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_mirror_user""$owngroup" "$cfg_chroot/etc" ||
72 echo "WARNING: Cannot chown $cfg_mirror_user$owngroup $cfg_chroot/etc"
73 chown
"$cfg_cgi_user""$owngroup" "$cfg_chroot/etc/passwd" "$cfg_chroot/etc/group" ||
74 echo "WARNING: Cannot chown $cfg_cgi_user$owngroup the files"
75 chmod g
+w
"$cfg_chroot/etc/passwd" "$cfg_chroot/etc/group" ||
76 echo "WARNING: Cannot chmod g+w the files"
77 chmod 02775 "$cfg_chroot/etc" ||
echo "WARNING: Cannot chmod 02775 $cfg_chroot/etc"
80 echo "*** Setting up gitweb from git.git..."
81 if [ ! -f git.git
/Makefile
]; then
82 echo "ERROR: git.git is not checked out! Did you _REALLY_ read INSTALL?" >&2
85 mkdir
-p "$cfg_webroot" "$cfg_cgiroot"
86 (cd git.git
&& make --quiet gitweb
/gitweb.cgi
&& cp gitweb
/gitweb.cgi
"$cfg_cgiroot" \
87 && cp gitweb
/*.png gitweb
/*.css gitweb
/*.js
"$cfg_webroot")
90 echo "*** Setting up git-browser from git-browser.git..."
91 if [ ! -f git-browser.git
/git-browser.cgi
]; then
92 echo "ERROR: git-browser.git is not checked out! Did you _REALLY_ read INSTALL?" >&2
95 mkdir
-p "$cfg_webroot"/git-browser
"$cfg_cgiroot"
96 (cd git-browser.git
&& cp git-browser.cgi
"$cfg_cgiroot" \
97 && cp -r *.html
*.js
*.css js.lib
/ JSON
/ "$cfg_webroot"/git-browser
)
98 ln -sf "$cfg_webroot/git-browser/JSON" "$cfg_cgiroot"
99 cat >"$cfg_cgiroot"/git-browser.conf
<<EOT
101 warehouse: $cfg_reporoot
103 cat >"$cfg_webroot"/git-browser
/GitConfig.js
<<EOT
104 cfg_gitweb_url="$cfg_gitweburl/"
105 cfg_browsercgi_url="$cfg_webadmurl/git-browser.cgi"
109 echo "*** Setting up darcs-fast-export from bzr-fastimport.git..."
110 if [ ! -d bzr-fastimport.git
/exporters
/darcs
/ ]; then
111 echo "ERROR: bzr-fastimport.git is not checked out! Did you _REALLY_ read INSTALL?" >&2
114 mkdir
-p "$cfg_basedir"/bin
115 cp bzr-fastimport.git
/exporters
/darcs
/darcs-fast-export
"$cfg_basedir"/bin
118 echo "*** Setting up our part of the website..."
119 mkdir
-p "$cfg_webroot" "$cfg_cgiroot"
120 cp cgi
/*.cgi gitweb
/gitweb_config.perl
"$cfg_cgiroot"
121 ln -fs "$cfg_basedir"/Girocco
"$cfg_cgiroot"
122 [ -z "$cfg_webreporoot" ] ||
{ rm -f "$cfg_webreporoot" && ln -s "$cfg_reporoot" "$cfg_webreporoot"; }
123 cp gitweb
/indextext.html
"$cfg_webroot"
124 mv "$cfg_basedir"/html
/*.css
"$cfg_basedir"/html
/*.js
"$cfg_webroot"
125 cp mootools.js
"$cfg_webroot"
126 cp htaccess
"$cfg_webroot/.htaccess"
127 cat gitweb
/gitweb.css
>>"$cfg_webroot"/gitweb.css
129 echo "*** Finalizing permissions..."
130 chown
-R -h "$cfg_mirror_user""$owngroup" "$cfg_basedir" "$cfg_webroot" "$cfg_cgiroot"