#!/bin/sh # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # This script file is a stub for systems that might want to include # checks for the account name that is passed to HOD. It will be # launched by HOD with the account name as an argument. The script # should return a zero exit code if the account is valid, and a # non zero exit code otherwise. Any output that the script generates # would be reported to the user by HOD, in case of a non-zero exit # code. # # By default, the script does nothing and returns a zero exit code. exit 0