mirror of
https://github.com/release-engineering/dist-git.git
synced 2025-02-23 23:12:55 +00:00
remove gitolite from package - let user setup its own way to handle git repo access
NOTE: Gitolite might still be used but is optional and user can configure it at will
This commit is contained in:
parent
6adbc28c58
commit
86b388c58f
2 changed files with 0 additions and 241 deletions
|
@ -1,201 +0,0 @@
|
||||||
# configuration variables for gitolite
|
|
||||||
|
|
||||||
# This file is in perl syntax. But you do NOT need to know perl to edit it --
|
|
||||||
# just mind the commas, use single quotes unless you know what you're doing,
|
|
||||||
# and make sure the brackets and braces stay matched up!
|
|
||||||
|
|
||||||
# (Tip: perl allows a comma after the last item in a list also!)
|
|
||||||
|
|
||||||
# HELP for commands can be had by running the command with "-h".
|
|
||||||
|
|
||||||
# HELP for all the other FEATURES can be found in the documentation (look for
|
|
||||||
# "list of non-core programs shipped with gitolite" in the master index) or
|
|
||||||
# directly in the corresponding source file.
|
|
||||||
|
|
||||||
|
|
||||||
# Hack!
|
|
||||||
# Pull in our repo aliases generated by genacls.sh
|
|
||||||
use lib ('/etc/gitolite/');
|
|
||||||
|
|
||||||
%RC = (
|
|
||||||
|
|
||||||
# ------------------------------------------------------------------
|
|
||||||
|
|
||||||
# default umask gives you perms of '0700'; see the rc file docs for
|
|
||||||
# how/why you might change this
|
|
||||||
UMASK => 0002,
|
|
||||||
|
|
||||||
# look for "git-config" in the documentation
|
|
||||||
GIT_CONFIG_KEYS => '',
|
|
||||||
|
|
||||||
# comment out if you don't need all the extra detail in the logfile
|
|
||||||
LOG_EXTRA => 1,
|
|
||||||
# syslog options
|
|
||||||
# 1. leave this section as is for normal gitolite logging
|
|
||||||
# 2. uncomment this line to log only to syslog:
|
|
||||||
LOG_DEST => 'syslog',
|
|
||||||
# 3. uncomment this line to log to syslog and the normal gitolite log:
|
|
||||||
# LOG_DEST => 'syslog,normal',
|
|
||||||
|
|
||||||
# roles. add more roles (like MANAGER, TESTER, ...) here.
|
|
||||||
# WARNING: if you make changes to this hash, you MUST run 'gitolite
|
|
||||||
# compile' afterward, and possibly also 'gitolite trigger POST_COMPILE'
|
|
||||||
ROLES => {
|
|
||||||
READERS => 1,
|
|
||||||
WRITERS => 1,
|
|
||||||
},
|
|
||||||
|
|
||||||
# enable caching (currently only Redis). PLEASE RTFM BEFORE USING!!!
|
|
||||||
# CACHE => 'Redis',
|
|
||||||
|
|
||||||
# ------------------------------------------------------------------
|
|
||||||
|
|
||||||
# rc variables used by various features
|
|
||||||
|
|
||||||
# the 'info' command prints this as additional info, if it is set
|
|
||||||
# SITE_INFO => 'Please see http://blahblah/gitolite for more help',
|
|
||||||
|
|
||||||
# the CpuTime feature uses these
|
|
||||||
# display user, system, and elapsed times to user after each git operation
|
|
||||||
# DISPLAY_CPU_TIME => 1,
|
|
||||||
# display a warning if total CPU times (u, s, cu, cs) crosses this limit
|
|
||||||
# CPU_TIME_WARN_LIMIT => 0.1,
|
|
||||||
|
|
||||||
# the Mirroring feature needs this
|
|
||||||
# HOSTNAME => "foo",
|
|
||||||
|
|
||||||
# TTL for redis cache; PLEASE SEE DOCUMENTATION BEFORE UNCOMMENTING!
|
|
||||||
# CACHE_TTL => 600,
|
|
||||||
|
|
||||||
# ------------------------------------------------------------------
|
|
||||||
|
|
||||||
# suggested locations for site-local gitolite code (see cust.html)
|
|
||||||
|
|
||||||
# this one is managed directly on the server
|
|
||||||
LOCAL_CODE => "/etc/gitolite/local",
|
|
||||||
|
|
||||||
# or you can use this, which lets you put everything in a subdirectory
|
|
||||||
# called "local" in your gitolite-admin repo. For a SECURITY WARNING
|
|
||||||
# on this, see http://gitolite.com/gitolite/non-core.html#pushcode
|
|
||||||
# LOCAL_CODE => "$rc{GL_ADMIN_BASE}/local",
|
|
||||||
|
|
||||||
# ------------------------------------------------------------------
|
|
||||||
|
|
||||||
# List of commands and features to enable
|
|
||||||
|
|
||||||
ENABLE => [
|
|
||||||
|
|
||||||
# COMMANDS
|
|
||||||
|
|
||||||
# These are the commands enabled by default
|
|
||||||
'help',
|
|
||||||
'desc',
|
|
||||||
'info',
|
|
||||||
'perms',
|
|
||||||
'writable',
|
|
||||||
|
|
||||||
# Uncomment or add new commands here.
|
|
||||||
# 'create',
|
|
||||||
# 'fork',
|
|
||||||
# 'mirror',
|
|
||||||
# 'readme',
|
|
||||||
# 'sskm',
|
|
||||||
# 'D',
|
|
||||||
|
|
||||||
# These FEATURES are enabled by default.
|
|
||||||
|
|
||||||
# essential (unless you're using smart-http mode)
|
|
||||||
'ssh-authkeys',
|
|
||||||
|
|
||||||
# creates git-config enties from gitolite.conf file entries like 'config foo.bar = baz'
|
|
||||||
'git-config',
|
|
||||||
|
|
||||||
# creates git-daemon-export-ok files; if you don't use git-daemon, comment this out
|
|
||||||
# 'daemon',
|
|
||||||
|
|
||||||
# creates projects.list file; if you don't use gitweb, comment this out
|
|
||||||
# 'gitweb',
|
|
||||||
|
|
||||||
# These FEATURES are disabled by default; uncomment to enable. If you
|
|
||||||
# need to add new ones, ask on the mailing list :-)
|
|
||||||
|
|
||||||
# user-visible behaviour
|
|
||||||
|
|
||||||
# prevent wild repos auto-create on fetch/clone
|
|
||||||
# 'no-create-on-read',
|
|
||||||
# no auto-create at all (don't forget to enable the 'create' command!)
|
|
||||||
'no-auto-create',
|
|
||||||
|
|
||||||
# access a repo by another (possibly legacy) name
|
|
||||||
'Alias',
|
|
||||||
|
|
||||||
# give some users direct shell access. See documentation in
|
|
||||||
# sts.html for details on the following two choices.
|
|
||||||
# "Shell $ENV{HOME}/.gitolite.shell-users",
|
|
||||||
# 'Shell alice bob',
|
|
||||||
"Shell /etc/gitolite/admins",
|
|
||||||
|
|
||||||
# set default roles from lines like 'option default.roles-1 = ...', etc.
|
|
||||||
# 'set-default-roles',
|
|
||||||
|
|
||||||
# show more detailed messages on deny
|
|
||||||
# 'expand-deny-messages',
|
|
||||||
|
|
||||||
# show a message of the day
|
|
||||||
# 'Motd',
|
|
||||||
|
|
||||||
# system admin stuff
|
|
||||||
|
|
||||||
# enable mirroring (don't forget to set the HOSTNAME too!)
|
|
||||||
# 'Mirroring',
|
|
||||||
|
|
||||||
# allow people to submit pub files with more than one key in them
|
|
||||||
# 'ssh-authkeys-split',
|
|
||||||
|
|
||||||
# selective read control hack
|
|
||||||
# 'partial-copy',
|
|
||||||
|
|
||||||
# manage local, gitolite-controlled, copies of read-only upstream repos
|
|
||||||
# 'upstream',
|
|
||||||
|
|
||||||
# updates 'description' file instead of 'gitweb.description' config item
|
|
||||||
'cgit',
|
|
||||||
|
|
||||||
# allow repo-specific hooks to be added
|
|
||||||
'repo-specific-hooks',
|
|
||||||
|
|
||||||
# performance, logging, monitoring...
|
|
||||||
|
|
||||||
# be nice
|
|
||||||
# 'renice 10',
|
|
||||||
|
|
||||||
# log CPU times (user, system, cumulative user, cumulative system)
|
|
||||||
# 'CpuTime',
|
|
||||||
|
|
||||||
# syntactic_sugar for gitolite.conf and included files
|
|
||||||
|
|
||||||
# allow backslash-escaped continuation lines in gitolite.conf
|
|
||||||
# 'continuation-lines',
|
|
||||||
|
|
||||||
# create implicit user groups from directory names in keydir/
|
|
||||||
# 'keysubdirs-as-groups',
|
|
||||||
|
|
||||||
# allow simple line-oriented macros
|
|
||||||
# 'macros',
|
|
||||||
|
|
||||||
# Kindergarten mode
|
|
||||||
|
|
||||||
# disallow various things that sensible people shouldn't be doing anyway
|
|
||||||
# 'Kindergarten',
|
|
||||||
],
|
|
||||||
|
|
||||||
);
|
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------
|
|
||||||
# per perl rules, this should be the last line in such a file:
|
|
||||||
1;
|
|
||||||
|
|
||||||
# Local variables:
|
|
||||||
# mode: perl
|
|
||||||
# End:
|
|
||||||
# vim: set syn=perl:
|
|
|
@ -23,7 +23,6 @@ BuildArch: noarch
|
||||||
BuildRequires: systemd
|
BuildRequires: systemd
|
||||||
|
|
||||||
Requires: httpd
|
Requires: httpd
|
||||||
Requires: gitolite3
|
|
||||||
Requires: perl(Sys::Syslog)
|
Requires: perl(Sys::Syslog)
|
||||||
Requires: git-daemon
|
Requires: git-daemon
|
||||||
Requires: python-requests
|
Requires: python-requests
|
||||||
|
@ -103,26 +102,15 @@ cp -a scripts/dist-git/* %{buildroot}/usr/local/bin/
|
||||||
# /etc/ .......... config files
|
# /etc/ .......... config files
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
install -d %{buildroot}%{_sysconfdir}/dist-git
|
install -d %{buildroot}%{_sysconfdir}/dist-git
|
||||||
install -d %{buildroot}%{_sysconfdir}/gitolite
|
|
||||||
install -d %{buildroot}%{_sysconfdir}/httpd/conf.d/dist-git
|
install -d %{buildroot}%{_sysconfdir}/httpd/conf.d/dist-git
|
||||||
mkdir -p %{buildroot}%{_unitdir}
|
mkdir -p %{buildroot}%{_unitdir}
|
||||||
|
|
||||||
cp -a configs/dist-git/dist-git.conf %{buildroot}%{_sysconfdir}/dist-git/
|
cp -a configs/dist-git/dist-git.conf %{buildroot}%{_sysconfdir}/dist-git/
|
||||||
cp -a configs/httpd/dist-git.conf %{buildroot}%{_sysconfdir}/httpd/conf.d/
|
cp -a configs/httpd/dist-git.conf %{buildroot}%{_sysconfdir}/httpd/conf.d/
|
||||||
cp -a configs/gitolite/gitolite.rc %{buildroot}%{_sysconfdir}/gitolite/
|
|
||||||
cp -a configs/httpd/ssl.conf.example %{buildroot}%{_sysconfdir}/httpd/conf.d/
|
cp -a configs/httpd/ssl.conf.example %{buildroot}%{_sysconfdir}/httpd/conf.d/
|
||||||
cp -a configs/httpd/dist-git/* %{buildroot}%{_sysconfdir}/httpd/conf.d/dist-git/
|
cp -a configs/httpd/dist-git/* %{buildroot}%{_sysconfdir}/httpd/conf.d/dist-git/
|
||||||
cp -a configs/systemd/* %{buildroot}%{_unitdir}/
|
cp -a configs/systemd/* %{buildroot}%{_unitdir}/
|
||||||
|
|
||||||
install -d %{buildroot}%{_sysconfdir}/gitolite
|
|
||||||
install -d %{buildroot}%{_sysconfdir}/gitolite/conf
|
|
||||||
install -d %{buildroot}%{_sysconfdir}/gitolite/logs
|
|
||||||
install -d %{buildroot}%{_sysconfdir}/gitolite/local
|
|
||||||
install -d %{buildroot}%{_sysconfdir}/gitolite/local/VREF
|
|
||||||
install -d %{buildroot}%{_sysconfdir}/gitolite
|
|
||||||
install -d %{buildroot}%{_sysconfdir}/gitolite/hooks
|
|
||||||
install -d %{buildroot}%{_sysconfdir}/gitolite/hooks/common
|
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# /var/lib/ ...... dynamic persistent files
|
# /var/lib/ ...... dynamic persistent files
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
@ -136,12 +124,6 @@ install -d %{buildroot}%{installdir}/web
|
||||||
|
|
||||||
cp -a scripts/httpd/upload.cgi %{buildroot}%{installdir}/web/
|
cp -a scripts/httpd/upload.cgi %{buildroot}%{installdir}/web/
|
||||||
|
|
||||||
ln -f -s %{_sysconfdir}/gitolite/gitolite.rc \
|
|
||||||
%{buildroot}%{installdir}/git/.gitolite.rc
|
|
||||||
|
|
||||||
ln -f -s %{_sysconfdir}/gitolite \
|
|
||||||
%{buildroot}%{installdir}/git/.gitolite
|
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# SELinux
|
# SELinux
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
@ -190,33 +172,13 @@ fi
|
||||||
%dir %{_sysconfdir}/dist-git
|
%dir %{_sysconfdir}/dist-git
|
||||||
%config(noreplace) %{_sysconfdir}/dist-git/dist-git.conf
|
%config(noreplace) %{_sysconfdir}/dist-git/dist-git.conf
|
||||||
%config(noreplace) %{_sysconfdir}/httpd/conf.d/dist-git.conf
|
%config(noreplace) %{_sysconfdir}/httpd/conf.d/dist-git.conf
|
||||||
%config(noreplace) %{_sysconfdir}/gitolite/gitolite.rc
|
|
||||||
%config %{_sysconfdir}/httpd/conf.d/ssl.conf.example
|
%config %{_sysconfdir}/httpd/conf.d/ssl.conf.example
|
||||||
%dir %{_sysconfdir}/httpd/conf.d/dist-git
|
%dir %{_sysconfdir}/httpd/conf.d/dist-git
|
||||||
%config(noreplace) %{_sysconfdir}/httpd/conf.d/dist-git/*
|
%config(noreplace) %{_sysconfdir}/httpd/conf.d/dist-git/*
|
||||||
|
|
||||||
# non-standard-dir-perm:
|
|
||||||
# - write access needed into log directory for gitolite
|
|
||||||
%attr (775, gen-acls, packager) %{_sysconfdir}/gitolite/logs
|
|
||||||
%dir %{_sysconfdir}/gitolite/local
|
|
||||||
# non-standard-dir-perm:
|
|
||||||
# - write access needed for gitolite admin groups
|
|
||||||
%attr (775, gen-acls, packager) %{_sysconfdir}/gitolite/local/VREF
|
|
||||||
# non-standard-dir-perm:
|
|
||||||
# - write access needed for gitolite admin groups
|
|
||||||
%attr (770, -, packager) %{_sysconfdir}/gitolite/hooks
|
|
||||||
# script-without-shebang:
|
|
||||||
# zero-length:
|
|
||||||
# - initial empty file required by gitolite with the correct perms
|
|
||||||
%dir %{_sysconfdir}/gitolite/hooks/common
|
|
||||||
%ghost %attr (775, gen-acls, packager) %{_sysconfdir}/gitolite/hooks/common/update
|
|
||||||
|
|
||||||
%{_unitdir}/dist-git@.service
|
%{_unitdir}/dist-git@.service
|
||||||
%{_unitdir}/dist-git.socket
|
%{_unitdir}/dist-git.socket
|
||||||
|
|
||||||
%dir %{_sysconfdir}/gitolite
|
|
||||||
%attr (755, gen-acls, gen-acls) %{_sysconfdir}/gitolite/conf
|
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# /var/lib/ ...... dynamic persistent files
|
# /var/lib/ ...... dynamic persistent files
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
@ -231,8 +193,6 @@ fi
|
||||||
%dir %{installdir}/cache
|
%dir %{installdir}/cache
|
||||||
%dir %{installdir}/cache/lookaside
|
%dir %{installdir}/cache/lookaside
|
||||||
%attr (775, apache, apache) %{installdir}/cache/lookaside/pkgs
|
%attr (775, apache, apache) %{installdir}/cache/lookaside/pkgs
|
||||||
%{installdir}/git/.gitolite
|
|
||||||
%{installdir}/git/.gitolite.rc
|
|
||||||
%attr (755, root, root) /usr/local/bin/mkbranch
|
%attr (755, root, root) /usr/local/bin/mkbranch
|
||||||
%attr (755, root, root) /usr/local/bin/mkbranch_branching
|
%attr (755, root, root) /usr/local/bin/mkbranch_branching
|
||||||
%attr (755, root, root) /usr/local/bin/setup_git_package
|
%attr (755, root, root) /usr/local/bin/setup_git_package
|
||||||
|
|
Loading…
Add table
Reference in a new issue