Commit 090772fb authored by nimrod's avatar nimrod
Browse files

Updates for GitLab.

Replace links from the old cgit instance to the new GitLab instance.
parent 339696df
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
[submodule "pelican-mockingbird"]
	path = pelican-mockingbird
	url = https://www.shore.co.il/git/pelican-mockingbird
	url = https://git.shore.co.il/nimrod/pelican-mockingbird.git
+1 −1
Original line number Diff line number Diff line
@@ -46,4 +46,4 @@ International license](https://creativecommons.org/licenses/by/4.0/).
Nimrod Adar, [contact me](mailto:nimrod@shore.co.il) or visit my [website](
https://www.shore.co.il/). Patches are welcome via [`git send-email`](
http://git-scm.com/book/en/v2/Git-Commands-Email). The repository is located
at: <https://www.shore.co.il/git/>.
at: <https://git.shore.co.il/>.
+1 −1
Original line number Diff line number Diff line
@@ -95,7 +95,7 @@ it:

.. code:: shell

    git clone https://www.shore.co.il/git/ansible-role-example ansible-role-name
    git clone https://git.shore.co.il/ansible/ansible-role-example.git ansible-role-name
    cd ansible-role-name
    for file in $(git grep -l ansible-role-example); do sed -i 's/ansible-role-example/ansible-role-name/g' $file; done
    git add .
+2 −2
Original line number Diff line number Diff line
@@ -47,5 +47,5 @@ Really, not that complicated. The only magic (undocumented) bit is creating a
:code:`__init__.py` file inside the :code:`library` directory, which is a 
shame that the Ansible documentation doesn't cover that. If you want to see a
real-life example, checkout my `ansible-playbooks
<https://www.shore.co.il/cgit/ansible-playbooks>`_ and `ansible-modules
<https://www.shore.co.il/cgit/ansible-modules>`_ git repos.
<https://git.shore.co.il/ansible/ansible-playbooks.git>`_ and `ansible-modules
<https://git.shore.co.il/ansible/ansible-modules.git>`_ git repos.
+10 −9
Original line number Diff line number Diff line
@@ -6,20 +6,21 @@ bundle_certs

Like I said in a previous blog post, I rarely blog but I run :code:`git init
project-name` pretty regularly. So here's a new such repo, `bundle_certs
<https://www.shore.co.il/cgit/bundle_certs/>`_. A simple shell script for
<https://git.shore.co.il/nimrod/bundle_certs.git>`_. A simple shell script for
bundling (in the correct order) SSL certificates.

How I start new projects
------------------------

This little tool, along with `ssl-ca <https://www.shore.co.il/cgit/ssl-ca/>`_
and `ssh-ca <https://www.shore.co.il/cgit/ssh-ca/>`_ have some commonality in
how I use them and this seems like a good opportunity to share. I keep my rc
files (like :code:`.vimrc`) in the
`rcfiles <https://www.shore.co.il/cgit/rcfiles/`>_ repo. However I don't install
them as mentioned in the documentation. Instead I add them as Git sub modules
and now I can be reasonably sure that when I clone the rcfiles repository, the
aliases and sourced files mentioned in :code:`.bashrc` are present. Here's how:
This little tool, along with `ssl-ca
<https://git.shore.co.il/nimrod/ssl-ca.git>`_ and `ssh-ca
<https://git.shore.co.il/nimrod/ssh-ca.git>`_ have some commonality in how I use
them and this seems like a good opportunity to share. I keep my rc files (like
:code:`.vimrc`) in the `rcfiles repo
<https://git.shore.co.il/nimrod/rcfiles.git`>_.  However I don't install them as
mentioned in the documentation. Instead I add them as Git sub modules and now I
can be reasonably sure that when I clone the rcfiles repository, the aliases and
sourced files mentioned in :code:`.bashrc` are present. Here's how:

.. code:: shell

Loading