mirror of
https://github.com/cimryan/teslausb.git
synced 2026-03-01 04:30:33 +00:00
10 lines
228 B
Bash
10 lines
228 B
Bash
#!/bin/bash -eu
|
|
|
|
function ensure_archive_is_mounted () {
|
|
log "Ensuring cam archive is mounted..."
|
|
ensure_mountpoint_is_mounted_with_retry "$ARCHIVE_MOUNT"
|
|
log "Ensured cam archive is mounted."
|
|
}
|
|
|
|
ensure_archive_is_mounted
|