List of commits:
Subject Hash Author Date (UTC)
Improve installation instructions for Redhat/Oracle/CentOS cf6eddb844cde38eb1ce70d8bc7d64b012b7161d Catalin(ux) M. BOIE 2016-04-23 16:51:30
Bump version to v0.52 696615520a55b963126c4ae50016e13daa6aa326 Catalin(ux) M. BOIE 2016-04-23 16:47:44
Lots of fixes and added the build hook for continuous integration be2dc0276c24d26adb9814c6b9f6d1f649c0cf1f Catalin(ux) M. BOIE 2016-04-23 16:46:04
Allow del_tree on a non-existing repository ecee062a80ca607be91942347deff00f042f6489 Catalin(ux) M. BOIE 2016-04-06 16:17:41
Improved user info caching a0ec540e7be1aa620a559c6f77537b9687aacc11 Catalin(ux) M. BOIE 2016-04-06 16:16:54
Improved git_init function c2732004dbb1695444be3030111faf4401c83fb1 Catalin(ux) M. BOIE 2016-04-06 16:16:09
Improved docker image creation ec28c883d9f7c9c69d80302a7d70ea1d630b070c Catalin(ux) M. BOIE 2016-04-06 16:15:11
Improved installation (checksum for postgres, useless SELinux booleans 4d9dcd67da247000a19a2f81aebd81f265bfe293 Catalin(ux) M. BOIE 2016-04-06 16:14:25
Add RLUG to history c84c2eaab9c1eb7e6898ef14f12fd8701c6fc285 Catalin(ux) M. BOIE 2016-04-06 16:13:32
Added unit test for e-mail confirmation 8a835c3ffa6f27c208fef6b4525f9aa571c603f6 Catalin(ux) M. BOIE 2016-03-27 11:41:35
Avoid caching in docker c8bc0ff648b60aa159c2a83d8ab1db3c574f19c3 Catalin(ux) M. BOIE 2016-03-14 16:32:25
Do not allow random input as reference fe5d01344b9131edeb2812f72549bf74d8242653 Catalin(ux) M. BOIE 2016-03-14 16:31:59
Bump version to 0.50 485f0f8bae787bfbd7c52c9b934af977d8a2b871 Catalin(ux) M. BOIE 2016-03-11 23:32:34
Fixed bug add menu 47d48b6bbf669bd51d6876521fa288d217dda5d2 Catalin(ux) M. BOIE 2016-03-11 23:32:02
docker small fixes 1e68d0bbf8e16365068636a4e813c8ae0db2be5c Catalin(ux) M. BOIE 2016-03-11 23:31:34
Corrected a problem in spec file 8d28fc4e9d66d9a07d1148d893176a99533f8796 Catalin(ux) M. BOIE 2016-03-11 17:33:18
Bump version to v0.49 1481eafa69e1b2f2e2922a7b26acc3dc9a56f1a3 Catalin(ux) M. BOIE 2016-03-11 17:26:13
Just some comments 96f8542619d772c29b9bb07e4a066b7302d6f35c Catalin(ux) M. BOIE 2016-03-11 17:25:29
TODO clean-ups 3e34a304a204792b1a1a0b403c88e3164441066c Catalin(ux) M. BOIE 2016-03-09 17:27:10
Document web hooks and anonymous push 449e2d788ec06a49cc93f7d058df51ec351b9244 Catalin(ux) M. BOIE 2016-03-09 17:26:29
Commit cf6eddb844cde38eb1ce70d8bc7d64b012b7161d - Improve installation instructions for Redhat/Oracle/CentOS
Author: Catalin(ux) M. BOIE
Author date (UTC): 2016-04-23 16:51
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2016-04-23 16:51
Parent(s): 696615520a55b963126c4ae50016e13daa6aa326
Signing key:
Tree: fa4748d1131a7604a1c1bb3699e45905bbf9342f
File Lines added Lines deleted
README 26 15
File README changed (mode: 100644) (index aaad2aa..f6624be)
39 39 /etc/php-zts.d/10-opcache.ini. /etc/php-zts.d/10-opcache.ini.
40 40
41 41 . Activate web server . Activate web server
42 # systemctl enable httpd.service
43 # systemctl restart httpd.service
42 systemd based distributions:
43 # systemctl enable httpd.service
44 # systemctl restart httpd.service
45 RedHat/CentOS/Oracle
46 # chkconfig httpd on
47 # service httpd restart
44 48
45 49 . Activate sshd (for ssh:// access) . Activate sshd (for ssh:// access)
46 # systemctl enable sshd.service
47 # systemctl start sshd.service
50 systemd based distributions:
51 # systemctl enable sshd.service
52 # systemctl start sshd.service
53 RedHat/CentOS/Oracle
54 # chkconfig sshd on
55 # service sshd restart
48 56
49 57 . Activate xinetd (for git:// access) . Activate xinetd (for git:// access)
50 # systemctl enable xinetd.service
51 # systemctl start xinetd.service
58 systemd based distributions:
59 # systemctl enable xinetd.service
60 # systemctl start xinetd.service
61 RedHat/CentOS/Oracle
62 # chkconfig xinetd on
63 # service xinetd restart
52 64
53 65 . Configure PostgreSQL server . Configure PostgreSQL server
54 66 Fedora: Fedora:
55 # systemctl enable postgresql.service
56 # postgresql-setup --initdb (TAKE CARE! YOU MAY DESTROY ALL YOUR DATA!)
57 # export PGSETUP_INITDB_OPTIONS="--data-checksums" # recommended
58 # systemctl start postgresql.service
59
60 # RedHat/CentOS/Oracle
61 chkconfig postgresql on
62 service postgresql initdb
63 service postgresql start
67 # systemctl enable postgresql.service
68 # postgresql-setup --initdb (TAKE CARE! YOU MAY DESTROY ALL YOUR DATA!)
69 # export PGSETUP_INITDB_OPTIONS="--data-checksums" # recommended
70 # systemctl start postgresql.service
71 RedHat/CentOS/Oracle
72 # chkconfig postgresql on
73 # service postgresql initdb
74 # service postgresql start
64 75
65 76 . Create a PostgreSQL user and database . Create a PostgreSQL user and database
66 77 # su - postgres # su - postgres
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/catalinux/rocketgit

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/catalinux/rocketgit

Clone this repository using git:
git clone git://git.rocketgit.com/user/catalinux/rocketgit

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main