summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Duroux <patrice.duroux@gmail.com>2023-03-01 17:48:12 +0100
committerdormando <dormando@rydia.net>2023-03-08 10:46:58 -0800
commitc13f1656e99226bac337a2010f8dae5658facdfc (patch)
treec5178987b0e64cdbc10c036db9463d147b080524
parent894974de30f6d7155b384dbdf417fa08c1497b1a (diff)
downloadmemcached-c13f1656e99226bac337a2010f8dae5658facdfc.tar.gz
replace 2&>1 by 2>&1
Hi, This follows the point here: https://lists.debian.org/debian-qa/2023/02/msg00052.html Thanks!
-rw-r--r--memcached.spec.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/memcached.spec.in b/memcached.spec.in
index 75d50b4..8c312b5 100644
--- a/memcached.spec.in
+++ b/memcached.spec.in
@@ -137,7 +137,7 @@ if [ "$1" = 0 ] ; then
/bin/systemctl stop %{name}.service > /dev/null 2>&1 || :
/bin/systemctl stop %{name}@\*.service > /dev/null 2>&1 || :
%else
- /sbin/service %{name} stop > /dev/null 2&>1 || :
+ /sbin/service %{name} stop > /dev/null 2>&1 || :
/sbin/chkconfig --del %{name}
%endif
fi