diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-04-13 13:13:29 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-04-13 13:14:46 +0000 |
commit | d455428dfa7ce90b979620546f53f4f172edee76 (patch) | |
tree | fb1ecb08a5f0edee33fd9a79b7d6372389d2c912 /testing/rethinkdb | |
parent | fee46540e9c760f4edddce8fd8ec4e20bf0a48e9 (diff) | |
download | aports-d455428dfa7ce90b979620546f53f4f172edee76.tar.bz2 aports-d455428dfa7ce90b979620546f53f4f172edee76.tar.xz |
testing/rethinkdb: fix bashism in init.d script
Diffstat (limited to 'testing/rethinkdb')
-rw-r--r-- | testing/rethinkdb/APKBUILD | 4 | ||||
-rw-r--r-- | testing/rethinkdb/rethinkdb.initd | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/testing/rethinkdb/APKBUILD b/testing/rethinkdb/APKBUILD index cb77b3a10f..60085fba87 100644 --- a/testing/rethinkdb/APKBUILD +++ b/testing/rethinkdb/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Daniel Treadwell <daniel@djt.id.au> pkgname=rethinkdb pkgver=2.3.5 -pkgrel=5 +pkgrel=6 pkgdesc="Distributed powerful and scalable NoSQL database" url="http://www.rethinkdb.com" arch="x86_64" @@ -69,5 +69,5 @@ doc() { sha512sums="ac71656fd2451fd36432fa0f7d2c16c2be53888f748d88f0bfc2fb9ad7cd3c704b56551bc35eda72eb08fffdd799727a3cbe83830337cf71e17c159588d33c94 rethinkdb-2.3.5.tgz 9ff727feedc7a9f58e7bf8554dc26e32ebca259b2d5d75ff0d064f5aea7a54c9c94fab16b83a3bc4039d4ae6d6d805d7b129ab9d5f762186d0388adeeff6e67c libressl.patch -8982bda4ee1f4147a26ded13b5f1caffe703ed9e025d635e9354d9e4c173c6c334f905fc0d1c9839bf1d2237a498a97d051d77bf4f4c453c4119ad3705a9381a rethinkdb.initd +c27e21073048bd5e8e2ec91303b43ce873748573e2b44ba28ee57ca1b3080afb67e56880b6a6da7a0abf4f2967dce45aa27fe8d6dd44b70d874d776e876ef132 rethinkdb.initd 3a07f9c78ef96b2ca37fca508ee14a644d3c08612f662ba5260182fbfcceba064d20253f1261f56dc0a2c28d1a4d5e2320872c3c4e7595cb7ab4e202eb28ad42 rethinkdb.confd" diff --git a/testing/rethinkdb/rethinkdb.initd b/testing/rethinkdb/rethinkdb.initd index a570a8cecf..c9e5a2b7eb 100644 --- a/testing/rethinkdb/rethinkdb.initd +++ b/testing/rethinkdb/rethinkdb.initd @@ -21,7 +21,7 @@ depend() { start_pre() { checkpath -d -m 0750 -o "${user}":"${group}" "${run_dir}" - if [ "${instance_name}" == "rethinkdb" ]; then + if [ "${instance_name}" = "rethinkdb" ]; then eerror "You should not run this default init script directly" eerror "Create a symlink to an instance name" eerror "and create a configuration file in /etc/rethinkdb/instances.d/" |