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=()
|
ALT_NAMES=()
|
||||||
QUALIFY=1
|
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
|
# XXX: Add an interactive mode to this script to obviate the need for a
|
||||||
# pre-existing config file? e.g.
|
# 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() {
|
usage() {
|
||||||
cat <<__EOT__
|
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() {
|
usage() {
|
||||||
cat <<__EOT__
|
cat <<__EOT__
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
#! /bin/bash
|
#!/bin/bash
|
||||||
# common functions for ca-scripts
|
# Common functions for ca-scripts.
|
||||||
|
|
||||||
PROGNAME=$( basename $0 )
|
PROGNAME=$( basename $0 )
|
||||||
CONFFILE="/etc/ca-scripts.conf"
|
CONFFILE="/etc/ca-scripts.conf"
|
||||||
SHAREDIR="/home/alex/code/ca-scripts/tpl"
|
SHAREDIR=$(dirname $(dirname $0))/tpl
|
||||||
CRYPTKEY="-nodes"
|
CRYPTKEY="-nodes"
|
||||||
|
|
||||||
INDEXTPL="index-html"
|
INDEXTPL="index-html"
|
||||||
|
|
Loading…
Reference in a new issue