Sisyphus repositório
Última atualização: 1 outubro 2023 | SRPMs: 18631 | Visitas: 37839065
en ru br
ALT Linux repositórios
S:0.07-alt1
5.0: 0.04-alt1
4.1: 0.04-alt1

Group :: Desenvolvimento/Outros
RPM: repocop-unittest-init-lsb

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs e FR  Repocop 

%define testname init-lsb

Name: repocop-unittest-%testname
Version: 0.07
Release: alt1
BuildArch: noarch
Packager: Igor Yu. Vlasenko <viy at altlinux.org>

Summary: %testname integration tests for repocop test platform
Group: Development/Other
License: GPL or Artistic
Url: http://repocop.altlinux.org
Requires: repocop > 0.40
Requires: repocop-collector-init-script

%description
%testname integration test for repocop test platform.
The test warns packages that do not have lsb compliant init scripts.

%prep

%build
cat > posttest <<'EOF'
#!/bin/sh
sqlite3 "$REPOCOP_DISTROTEST_DBDIR/rpm.db" <<EOSQL
.mode tabs
.output $REPOCOP_TEST_TMPDIR/systemd_services
SELECT filename FROM rpm_files WHERE FILENAME glob '/lib/systemd/system/*.service';
EOSQL
sed -i -e 's,^/lib/systemd/system/,,;s,\.service$,,' $REPOCOP_TEST_TMPDIR/systemd_services


for repocop_pkg_key in `ls $REPOCOP_STATEDIR/init-script`; do
   keydir="$REPOCOP_STATEDIR/init-script/$repocop_pkg_key"
   STATUS=ok
   MESSAGE=
   for i in "$keydir"/*; do
       filename=${i##$keydir/}
if [ -x $i ]; then
   HAS_INIT=`grep '# chkconfig:' $i`
   HAS_LSB_INIT=`grep '### BEGIN INIT INFO' $i`
           if [ -z "$HAS_LSB_INIT" ]; then
               if [ -n "$HAS_INIT" ]; then
   if grep -q '^'$filename'$' $REPOCOP_TEST_TMPDIR/systemd_services; then
STATUS=warn
MESSAGE="$MESSAGE%_initdir/$filename: lsb init header missing. "
                   else
STATUS=fail
MESSAGE="$MESSAGE%_initdir/$filename: not systemd compatible: lsb init header missing and ${filename}.service is not present. "
           fi
               else
   STATUS=warn
                   MESSAGE="$MESSAGE%_initdir/$filename: strange executable: neither lsb header nor chkconfig header aren't found. "
               fi
           fi
       fi
   done
   repocop-test-$STATUS -k $repocop_pkg_key "$MESSAGE See http://www.altlinux.org/Services_Policy for details."
done
rm -f $REPOCOP_TEST_TMPDIR/systemd_services
EOF

cat > description <<'EOF'
The files the test is worrying about are non lsb compliant init scripts.
In order to implement parallel system boot we need to add an lsb init header
to every init script.
See http://www.altlinux.org/Services_Policy for details.
EOF

%install
mkdir -p $RPM_BUILD_ROOT%_datadir/repocop/pkgtests/%testname/
install -m 755 posttest $RPM_BUILD_ROOT%_datadir/repocop/pkgtests/%testname/
install -m 644 description $RPM_BUILD_ROOT%_datadir/repocop/pkgtests/%testname/

%files
#doc README ChangeLog
%_datadir/repocop/pkgtests/%testname

%changelog

Todas as alterações você pod ver aqui

 
projeto & código: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
mantenedor atual: Michael Shigorin
mantenedor da tradução: Fernando Martini aka fmartini © 2009