release version 1.11-1
This commit is contained in:
parent
f5c421aa8f
commit
7f41168970
@ -1,7 +1,7 @@
|
||||
Name: beakerlib
|
||||
Summary: A shell-level integration testing library
|
||||
Version: 1.10
|
||||
Release: 3%{?dist}
|
||||
Version: 1.11
|
||||
Release: 1%{?dist}
|
||||
License: GPLv2
|
||||
Group: Development/Libraries
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||
@ -74,6 +74,10 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_datadir}/vim/vimfiles/after/syntax/beakerlib.vim
|
||||
|
||||
%changelog
|
||||
* Thu Oct 29 2015 Dalibor Pospisil <dapospis@redhat.com> - 1.11-1
|
||||
- fixed bugs 971347, 1076471, 1262888, 1216177, 1184414, 1192535, 1224345,
|
||||
1211269, 1224362, 1205330, 1175513, 1211617, 1221352
|
||||
|
||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
|
||||
@ -1,31 +0,0 @@
|
||||
From 0474dc962be56f7292e595423c092c3d4117eb99 Mon Sep 17 00:00:00 2001
|
||||
From: Dalibor Pospisil <dapospis@redhat.com>
|
||||
Date: Fri, 12 Dec 2014 15:25:56 +0100
|
||||
Subject: [PATCH 1/5] __INTERNAL_Mount: do remount if already mounted and
|
||||
options specified
|
||||
|
||||
If option 'rw' is specified, automatically prepend 'remount' to options if it is not already present.
|
||||
---
|
||||
src/infrastructure.sh | 4 ++++
|
||||
1 file changed, 4 insertions(+)
|
||||
|
||||
diff --git a/src/infrastructure.sh b/src/infrastructure.sh
|
||||
index e911fc9..29a5d43 100644
|
||||
--- a/src/infrastructure.sh
|
||||
+++ b/src/infrastructure.sh
|
||||
@@ -86,8 +86,12 @@ __INTERNAL_Mount(){
|
||||
|
||||
if __INTERNAL_CheckMount "$MNTPATH"
|
||||
then
|
||||
+ if [[ -z "$OPTIONS" ]]; then
|
||||
rlLogInfo "$WHO already mounted: success"
|
||||
return 0
|
||||
+ else
|
||||
+ [[ "$OPTIONS" =~ remount ]] || OPTIONS="remount,$OPTIONS"
|
||||
+ fi
|
||||
elif [ ! -d "$MNTPATH" ]
|
||||
then
|
||||
rlLogInfo "$WHO creating directory $MNTPATH"
|
||||
--
|
||||
1.9.3
|
||||
|
||||
Loading…
Reference in New Issue
Block a user