8 lines
221 B
Bash
8 lines
221 B
Bash
#!/bin/bash
|
|
PATH_BUILD=$1
|
|
PATH_DEB=$2
|
|
GIT_VERSION=$3
|
|
|
|
cp ${PATH_BUILD}/tmp/authelia/dist/authelia ${PATH_DEB}/usr/bin/authelia
|
|
cp ${PATH_BUILD}/tmp/authelia/config.template.yml ${PATH_DEB}/etc/authelia/configuration.yml
|
|
|