2015-05-05 01:35:52 +03:00
#!/bin/bash
#
# Copyright (C) 2015 Colin Walters <walters@verbum.org>
#
2018-01-30 22:26:26 +03:00
# SPDX-License-Identifier: LGPL-2.0+
#
2015-05-05 01:35:52 +03:00
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
2021-12-07 04:20:55 +03:00
# License along with this library. If not, see <https://www.gnu.org/licenses/>.
2015-05-05 01:35:52 +03:00
2016-01-27 19:44:10 +03:00
set -euo pipefail
2015-05-05 01:35:52 +03:00
. $( dirname $0 ) /libtest.sh
2015-07-14 20:30:05 +03:00
# Exports OSTREE_SYSROOT so --sysroot not needed.
2017-09-01 23:15:33 +03:00
setup_os_repository "archive" "syslinux"
2015-05-05 01:35:52 +03:00
2016-03-02 18:28:04 +03:00
# If parallel is not installed, skip the test
2016-03-31 16:32:55 +03:00
if ! parallel --gnu /bin/true </dev/null >/dev/null 2>& 1; then
echo "1..0 # SKIP GNU parallel not available"
2016-03-02 18:28:04 +03:00
exit 0
fi
2015-05-05 01:35:52 +03:00
echo "1..1"
cd ${ test_tmpdir }
${ CMD_PREFIX } ostree --repo= sysroot/ostree/repo remote add --set= gpg-verify= false testos $( cat httpd-address) /ostree/testos-repo
2021-05-07 17:42:37 +03:00
${ CMD_PREFIX } ostree --repo= sysroot/ostree/repo pull testos testos/buildmain/x86_64-runtime
rev = $( ${ CMD_PREFIX } ostree --repo= sysroot/ostree/repo rev-parse testos/buildmain/x86_64-runtime)
2015-05-05 01:35:52 +03:00
export rev
echo " rev= ${ rev } "
# This initial deployment gets kicked off with some kernel arguments
2021-05-07 17:42:37 +03:00
${ CMD_PREFIX } ostree admin deploy --karg= root = LABEL = MOO --karg= quiet --os= testos testos:testos/buildmain/x86_64-runtime
2015-05-05 01:35:52 +03:00
assert_has_dir sysroot/boot/ostree/testos-${ bootcsum }
2016-03-31 16:32:55 +03:00
parallel_cmd = "parallel --gnu"
2015-06-29 20:35:07 +03:00
if parallel --help | grep -q -e --no-notice; then
parallel_cmd = " ${ parallel_cmd } --no-notice "
fi
2015-05-05 01:35:52 +03:00
count = $(( $( getconf _NPROCESSORS_ONLN) * 2 ))
2021-05-07 17:42:37 +03:00
seq " ${ count } " | ${ parallel_cmd } -n0 ${ CMD_PREFIX } ostree admin deploy --retain --os= testos testos:testos/buildmain/x86_64-runtime
2015-05-05 01:35:52 +03:00
2015-07-14 20:30:05 +03:00
${ CMD_PREFIX } ostree admin status > status.txt
2015-05-05 01:35:52 +03:00
grep " testos ${ rev } " status.txt | wc -l > status-matches.txt
assert_file_has_content status-matches.txt $(( ${ count } + 1 ))
echo 'ok deploy locking'