mirror of
https://github.com/ostreedev/ostree.git
synced 2025-01-07 21:18:55 +03:00
13 lines
305 B
Bash
Executable File
13 lines
305 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Verify "ostree admin kargs edit-in-place" works
|
|
|
|
set -xeuo pipefail
|
|
|
|
. ${KOLA_EXT_DATA}/libinsttest.sh
|
|
|
|
sudo ostree admin kargs edit-in-place --append-if-missing=testarg
|
|
assert_file_has_content /boot/loader/entries/ostree-* testarg
|
|
|
|
echo "ok test `kargs edit-in-place --append-if-missing`"
|