#!/bin/bash # ------- # File: llxcfg-backend-client # Description: Generic client for llxcfg-backend-daemon using # unix-domain sockets # Author: Luis Garcia Gisbert # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston MA 02110-1301 USA # -------- # load libs LIB_SOCKET1="/usr/share/lliurex/llxcfg-backend/llxcfg-backend-common.sh" [ -f "$LIB_SOCKET1" ] || exit 1 . $LIB_SOCKET1 LIB_SOCKET2="/usr/share/lliurex/llxcfg-backend/llxcfg-unix-sockets.sh" [ -f "$LIB_SOCKET2" ] || exit 1 . $LIB_SOCKET2 # generic superclient code ;-) # main if [ "$1" ] ; then rc=0 echo "(Frontend: Sending command ...)" >&2 send_srv_cmd "$@" || rc=$? exit $GLOBAL_RC fi