![James McCarthy](/assets/img/avatar_default.png)
Co-Authored-By: Paul Bourke <paul.bourke@oracle.com> Partially Implements: Blueprint swift-container Change-Id: I9d732b120c6a6354fe450cfc3f00dd2469bb9265
9 lines
95 B
Bash
Executable File
9 lines
95 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit
|
|
|
|
CMD="/usr/bin/memcached"
|
|
ARGS="-u memcached -vv"
|
|
|
|
exec $CMD $ARGS
|