Creating $TEMPLATE_ROOT is common to both os-apply-config package and source installs, so move it into it's own install hook script under install.d. Change-Id: Iba79129cd111c144f67efabb93d4eb81641d1c2c
7 lines
98 B
Bash
Executable File
7 lines
98 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eux
|
|
|
|
TEMPLATE_ROOT=$(os-apply-config --print-templates)
|
|
mkdir -p $TEMPLATE_ROOT
|