diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-10-12 01:35:56 +0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-10-12 01:40:57 +0200 |
commit | bc7d2545d47bf54acebb38ab3d1e2dd7251ddb99 (patch) | |
tree | 32d99afa6dca410f300bfc3a12e8548abbeb0ea3 /man | |
parent | 9d0ef0268f7903fd91ef11ed055a7714a70c7c29 (diff) | |
download | blogc-bc7d2545d47bf54acebb38ab3d1e2dd7251ddb99.tar.gz blogc-bc7d2545d47bf54acebb38ab3d1e2dd7251ddb99.tar.bz2 blogc-bc7d2545d47bf54acebb38ab3d1e2dd7251ddb99.zip |
build: man: tests: do not use bash
tested with busybox' ash, that is not exactly posix.
Diffstat (limited to 'man')
-rw-r--r-- | man/blogc-git-receiver.1.ronn | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/man/blogc-git-receiver.1.ronn b/man/blogc-git-receiver.1.ronn index 806ba3d..ab54490 100644 --- a/man/blogc-git-receiver.1.ronn +++ b/man/blogc-git-receiver.1.ronn @@ -88,7 +88,7 @@ value of the `mirror` variable is the URL that should be used to push. To create the configuration file (recommended): - # su -s /bin/bash - blogc + # su -s /bin/sh - blogc # cat > ~/blogc-git-receiver.ini <<EOF [repo:myblog.git] mirror=$YOUR_GIT_MIRROR_URL @@ -96,7 +96,7 @@ To create the configuration file (recommended): Or to add the `mirror` remote: - # su -s /bin/bash - blogc + # su -s /bin/sh - blogc $ cd repos $ git init --bare myblog.git # if not created yet $ cd myblog.git @@ -117,10 +117,10 @@ checking in SSH's `~/.ssh/config` file: The example uses `bitbucket.org` as remote host, that should be changed if needed. -To change this file, users must login with `/bin/bash` or any other "real" shell, +To change this file, users must login with `/bin/sh` or any other "real" shell, as `root`: - # su -s /bin/bash - blogc + # su -s /bin/sh - blogc ## ENVIRONMENT VARIABLES |