%define debug_package %{nil} #Basic Information Name: lxcfs-tools Version: 0.3 Release: 24 Summary: toolkit for lxcfs to remount a running isulad License: Mulan PSL v2 URL: https://gitee.com/openeuler/lxcfs-tools Source0: https://gitee.com/openeuler/lxcfs-tools/repository/archive/v%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-root Patch1: 0001-lxcfs-tools-build-security-option.patch #Dependency BuildRequires: golang > 1.7 BuildRequires: glibc-static Requires: iSulad %description A toolkit for lxcfs to remount a running isulad when crashes recover #Build sections %prep %setup -n %{name} -q %patch1 -p1 %build make %install HOOK_DIR=$RPM_BUILD_ROOT/var/lib/isulad/hooks LXCFS_TOOLS_DIR=$RPM_BUILD_ROOT/usr/local/bin mkdir -p -m 0700 ${HOOK_DIR} mkdir -p -m 0700 ${LXCFS_TOOLS_DIR} install -m 0750 build/lxcfs-hook ${HOOK_DIR} install -m 0750 build/lxcfs-tools ${LXCFS_TOOLS_DIR} #Install and uninstall scripts %pre %preun %post GRAPH=`isula info | grep -Eo "iSulad Root Dir:.+" | grep -Eo "\/.*"` if [ "$GRAPH" == "" ]; then GRAPH="/var/lib/isulad" fi if [[ ("$GRAPH" != "/var/lib/isulad") ]]; then mkdir -p -m 0550 $GRAPH/hooks install -m 0550 -p /var/lib/isulad/hooks/lxcfs-hook $GRAPH/hooks echo echo "=================== WARNING! ================================================" echo " 'iSulad Root Dir' is $GRAPH, move /var/lib/isulad/hooks/lxcfs-hook to $GRAPH/hooks" echo "=============================================================================" echo fi HOOK_SPEC=${GRAPH}/hooks HOOK_DIR=${GRAPH}/hooks touch ${HOOK_SPEC}/hookspec.json cat << EOF > ${HOOK_SPEC}/hookspec.json { "prestart": [ { "path": "${HOOK_DIR}/lxcfs-hook", "args": ["lxcfs-hook"], "env": [] } ], "poststart":[], "poststop":[] } EOF chmod 0640 ${HOOK_SPEC}/hookspec.json %postun #Files list %files %defattr(0550,root,root,0550) /usr/local/bin/lxcfs-tools %attr(0550,root,root) /var/lib/isulad/hooks %attr(0550,root,root) /var/lib/isulad/hooks/lxcfs-hook #Clean section %clean rm -rfv %{buildroot} %changelog * Mon Feb 08 2021 zhangsong234 - 0.3-24 - update version to 0.3-24 * Mon Sep 07 2020 wangkang101 <873229877@qq.com> - 0.3-2 - modify url of source0 * Fri Jul 03 2020 Zhangsong - 0.3-1 - release version 0.3