diff options
-rwxr-xr-x | build-aux/travis-build.sh | 2 | ||||
-rwxr-xr-x | build-aux/travis-deploy.sh | 2 | ||||
-rwxr-xr-x | build-aux/valgrind.sh | 2 | ||||
-rw-r--r-- | man/blogc-git-receiver.1.ronn | 8 | ||||
-rwxr-xr-x | tests/blogc-git-receiver/check_post_receive.sh | 2 | ||||
-rwxr-xr-x | tests/blogc-git-receiver/check_pre_receive.sh | 2 | ||||
-rwxr-xr-x | tests/blogc-git-receiver/check_shell.sh | 2 |
7 files changed, 10 insertions, 10 deletions
diff --git a/build-aux/travis-build.sh b/build-aux/travis-build.sh index 53cf589..106c230 100755 --- a/build-aux/travis-build.sh +++ b/build-aux/travis-build.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh set -ex diff --git a/build-aux/travis-deploy.sh b/build-aux/travis-deploy.sh index 51aac3e..dea0b0f 100755 --- a/build-aux/travis-deploy.sh +++ b/build-aux/travis-deploy.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh set -e diff --git a/build-aux/valgrind.sh b/build-aux/valgrind.sh index 4db7477..3de3855 100755 --- a/build-aux/valgrind.sh +++ b/build-aux/valgrind.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh set -e 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 diff --git a/tests/blogc-git-receiver/check_post_receive.sh b/tests/blogc-git-receiver/check_post_receive.sh index b1c8246..ac07c64 100755 --- a/tests/blogc-git-receiver/check_post_receive.sh +++ b/tests/blogc-git-receiver/check_post_receive.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh set -xe -o pipefail diff --git a/tests/blogc-git-receiver/check_pre_receive.sh b/tests/blogc-git-receiver/check_pre_receive.sh index 7ef7f0e..2df713a 100755 --- a/tests/blogc-git-receiver/check_pre_receive.sh +++ b/tests/blogc-git-receiver/check_pre_receive.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh set -xe -o pipefail diff --git a/tests/blogc-git-receiver/check_shell.sh b/tests/blogc-git-receiver/check_shell.sh index 64f105e..f563c02 100755 --- a/tests/blogc-git-receiver/check_shell.sh +++ b/tests/blogc-git-receiver/check_shell.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh set -xe -o pipefail |