Advertisement
GarbageYard

Git Found

Jul 19th, 2015
356
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.92 KB | None | 0 0
  1. Places where i found git on my system:
  2.  
  3. [root@analysis ~]# which git
  4. /usr/bin/git
  5.  
  6.  
  7. [root@analysis ~]# ll /var/www/git
  8. total 224
  9. -rwxr-xr-x 1 root root 221475 May 28 2013 gitweb.cgi
  10. -rwxrwxrwx. 1 apache apache 0 Dec 7 2012 mod_auth_openid.db
  11. drwxr-xr-x 2 apache apache 4096 Dec 22 2014 static
  12. [root@analysis ~]#
  13. [root@analysis ~]# ll /var/lib/git
  14. total 4
  15. drwxr-xr-x. 2 root root 4096 Oct 19 2013 hooks
  16. [root@analysis ~]#
  17. [root@analysis ~]# ll /usr/bin/git
  18. -rwxr-xr-x 105 root root 1140648 Mar 5 2013 /usr/bin/git
  19. [root@analysis ~]#
  20. [root@analysis ~]# ll /var/git
  21. total 4
  22. drwxr-xr-x. 2 root root 4096 Mar 19 13:58 hooks
  23. [root@analysis ~]#
  24. [root@analysis ~]# ll /etc/bash_completion.d/git
  25. -rw-r--r-- 1 root root 45281 Mar 5 2013 /etc/bash_completion.d/git
  26. [root@analysis ~]#
  27. [root@analysis ~]# cat /var/spool/abrt/ccpp-2012-12-19-17:34:56-61698/analysis-2012121917351355918718/etc/xinetd.d/git
  28. # default: off
  29. # description: The git dæmon allows git repositories to be exported using \
  30. # the git:// protocol.
  31.  
  32. service git
  33. {
  34. disable = yes
  35. socket_type = stream
  36. wait = no
  37. user = nobody
  38. server = /usr/libexec/git-core/git-daemon
  39. server_args = --base-path=/var/lib/git --export-all --user-path=public_git --syslog --inetd --verbose
  40. log_on_failure += USERID
  41. }
  42. [root@analysis ~]#
  43. [root@analysis ~]# cat /etc/xinetd.d/git
  44. # default: off
  45. # description: The git dæmon allows git repositories to be exported using \
  46. # the git:// protocol.
  47.  
  48. service git
  49. {
  50. disable = yes
  51. socket_type = stream
  52. wait = no
  53. user = nobody
  54. server = /usr/libexec/git-core/git-daemon
  55. server_args = --base-path=/var/lib/git --export-all --user-path=public_git --syslog --inetd --verbose
  56. log_on_failure += USERID
  57. }
  58. [root@analysis ~]#
  59. [root@analysis ~]# ls -l /usr/libexec/git-core/
  60. total 122384
  61. -rwxr-xr-x 105 root root 1140648 Mar 5 2013 git
  62. -rwxr-xr-x 105 root root 1140648 Mar 5 2013 git-add
  63. -rwxr-xr-x 1 root root 35716 Mar 5 2013 git-add--interactive
  64. -rwxr-xr-x 1 root root 19036 Mar 5 2013 git-am
  65. -rwxr-xr-x 105 root root 1140648 Mar 5 2013 git-annotate
  66. -rwxr-xr-x 105 root root 1140648 Mar 5 2013 git-apply
  67. -rwxr-xr-x 105 root root 1140648 Mar 5 2013 git-archive
  68. -rwxr-xr-x 1 root root 10021 Mar 5 2013 git-bisect
  69. -rwxr-xr-x 105 root root 1140648 Mar 5 2013 git-bisect--helper
  70. -rwxr-xr-x 105 root root 1140648 Mar 5 2013 git-blame
  71. -rwxr-xr-x 105 root root 1140648 Mar 5 2013 git-branch
  72. ...
  73. ...
  74. ...
  75. [root@analysis ~]# ll /usr/lib/python2.6/site-packages/GitPython-0.3.2.RC1-py2.6.egg/git
  76. total 344
  77. -rwxr-xr-x 1 root root 16919 May 20 2013 cmd.py
  78. -rw-r--r-- 1 root root 19050 May 20 2013 cmd.pyc
  79. -rwxr-xr-x 1 root root 13447 May 20 2013 config.py
  80. -rw-r--r-- 1 root root 15342 May 20 2013 config.pyc
  81. -rwxr-xr-x 1 root root 1837 May 20 2013 db.py
  82. -rw-r--r-- 1 root root 2741 May 20 2013 db.pyc
  83. -rwxr-xr-x 1 root root 10364 May 20 2013 diff.py
  84. -rw-r--r-- 1 root root 11663 May 20 2013 diff.pyc
  85. -rwxr-xr-x 1 root root 2004 May 20 2013 exc.py
  86. -rw-r--r-- 1 root root 3814 May 20 2013 exc.pyc
  87. drwxr-xr-x 2 root root 4096 May 20 2013 index
  88. -rwxr-xr-x 1 root root 1175 May 20 2013 __init__.py
  89. -rw-r--r-- 1 root root 1455 May 20 2013 __init__.pyc
  90. drwxr-xr-x 3 root root 4096 May 20 2013 objects
  91. -rwxr-xr-x 1 root root 46544 May 20 2013 odict.py
  92. -rw-r--r-- 1 root root 56624 May 20 2013 odict.pyc
  93. drwxr-xr-x 2 root root 4096 May 20 2013 refs
  94. -rwxr-xr-x 1 root root 23603 May 20 2013 remote.py
  95. -rw-r--r-- 1 root root 24050 May 20 2013 remote.pyc
  96. drwxr-xr-x 2 root root 4096 May 20 2013 repo
  97. drwxr-xr-x 4 root root 4096 May 20 2013 test
  98. -rwxr-xr-x 1 root root 20643 May 20 2013 util.py
  99. -rw-r--r-- 1 root root 26595 May 20 2013 util.pyc
  100. [root@analysis ~]#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement