blob: 900c0f7b38084b3fcfd84da92ae5f885d4412c37 [file] [log] [blame]
Paul Sokolovsky54e23d62022-09-26 21:49:59 +03001#!/bin/sh
2
3usage() {
4 echo "Usage: $0 SECONDS" >&2
5 exit 2
6}
7
8[ $# -eq 1 ] || usage
9
10seconds=$1
11
12sudo su "${ECLAIR_LICENSE_USER}" -c "\"${ECLAIR_TOP_DIR}/bin/eclair_licman\" -d 38199 -t \"${seconds}\" -s u"
Paul Sokolovskydd870412022-10-07 21:18:16 +030013rc=$?
14echo rc: $rc
15exit $rc