430ea923e0
Since install is run as root already (using sudo), the resulting file will be already root:root. Change-Id: I6023fd277ea77fbfa4f7ad42b04d58c8cd6bd4fe
10 lines
203 B
Bash
Executable File
10 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "${DIB_DEBUG_TRACE:-1}" -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
sudo install -D -m 0644 "$TMP_MOUNT_PATH/tmp/svc-map-services" "$TMP_MOUNT_PATH/usr/share/svc-map/services"
|