search for: gitserver

Displaying 4 results from an estimated 4 matches for "gitserver".

Did you mean: gdtserver
2007 Sep 24
3
conceptual problem deploying git repos to a puppetmaster
...39;* ${branch}''", require => Exec["clone-repo-${name}"], } } } } } Then I call it like this: (for my puppetmaster in this case) git::repo { $puppet_modules: src => "${gitserver}", dst => "${puppetdir}/modules/main/", use_names => true, } where: $puppet_modules = [ ''puppet'', ''ssh'', ''apache'', ... ] # and so on listing out all my modules This works great, n...
2010 Nov 16
4
easy httpd's problem
...orer, except the any direcotry and file that exist after the CentOS installation complete. This is my directory 's detail information: drwxr-xr-x root www-data root:object_r:default_t CenterRepo and my httpd's configuration information: <VirtualHost *:80> ServerAdmin gitserver DocumentRoot / <Directory /> Options Indexes FollowSymLinks includes order allow,deny AllowOverride None allow from all </Directory> ServerName dummy-host.example.com ErrorLog logs/dummy-host.example.com-error_log CustomLog logs/du...
2010 Jun 17
0
Help ME, Please
I want to login in remote server, git server, with two accounts (mars and gitolite) without password. e.g. (steps) 1. ssh-keygen? # no password 2. scp .ssh/id_rsa.pub gitolite at gitserver:/tmp/ 3. ssh gitolite at gitserve 4. cat /tmp/id_rsa.pub >> .ssh/authorized_keys 5. exit Then, do : ssh gitolite at gitserver ls But error message occurs:? Permission denied (publickey,gssapi-keyex,gssapi-with-mic,password). However, when cat the id_rsa.pub to the end of mars account...
2007 Jun 09
12
Example module for central git repository via http (sort of like a subversion repo) [a bit RFC]
...host the repository, do: include git::server git::repos { "main": } (and see the header for the repos definition in definitions/repos.pp) - in a node where you want to easily use the above repo, do: include git::client git::clientsetup { "main": gitserver => "<servername>", gitusername => "<username>", passwd => "<password>", } (and again see the header in definitions/clientsetup.pp) As you''ll see, it lacks some documentation at the moment, and...