Fix ca-functions include path
This commit is contained in:
parent
a39c584d0a
commit
5f8a13b59a
5 changed files with 11 additions and 11 deletions
|
@ -1,6 +1,6 @@
|
|||
#! /bin/bash
|
||||
#!/bin/bash
|
||||
|
||||
. "/home/alex/code/ca-scripts/lib/ca-functions"
|
||||
source $(dirname $(dirname $0))/lib/ca-functions
|
||||
|
||||
ALT_NAMES=()
|
||||
QUALIFY=1
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/bash
|
||||
#!/bin/bash
|
||||
|
||||
. "/home/alex/code/ca-scripts/lib/ca-functions"
|
||||
source $(dirname $(dirname $0))/lib/ca-functions
|
||||
|
||||
# XXX: Add an interactive mode to this script to obviate the need for a
|
||||
# pre-existing config file? e.g.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/bash
|
||||
#!/bin/bash
|
||||
|
||||
. "/home/alex/code/ca-scripts/lib/ca-functions"
|
||||
source $(dirname $(dirname $0))/lib/ca-functions
|
||||
|
||||
usage() {
|
||||
cat <<__EOT__
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
#!/bin/sh
|
||||
|
||||
. "/home/alex/code/ca-scripts/lib/ca-functions"
|
||||
source $(dirname $(dirname $0))/lib/ca-functions
|
||||
|
||||
usage() {
|
||||
cat <<__EOT__
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
#! /bin/bash
|
||||
# common functions for ca-scripts
|
||||
#!/bin/bash
|
||||
# Common functions for ca-scripts.
|
||||
|
||||
PROGNAME=$( basename $0 )
|
||||
CONFFILE="/etc/ca-scripts.conf"
|
||||
SHAREDIR="/home/alex/code/ca-scripts/tpl"
|
||||
SHAREDIR=$(dirname $(dirname $0))/tpl
|
||||
CRYPTKEY="-nodes"
|
||||
|
||||
INDEXTPL="index-html"
|
||||
|
|
Loading…
Reference in a new issue