From d87d6365009f1663247fd8595b487c59d9b121f1 Mon Sep 17 00:00:00 2001 From: Anchal Agarwal Date: Wed, 19 Feb 2020 23:43:05 +0000 Subject: [PATCH] BugFix: Remove quotes in config file for state_dir value. It creates strange directory /" --- ec2-hibinit-agent.spec | 4 ++-- etc/hibinit-config.cfg | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ec2-hibinit-agent.spec b/ec2-hibinit-agent.spec index 6c0c356..3f907b0 100644 --- a/ec2-hibinit-agent.spec +++ b/ec2-hibinit-agent.spec @@ -1,6 +1,6 @@ Name: ec2-hibinit-agent -Version: 1.0.1 -Release: 2%{?dist} +Version: 1.0.2 +Release: 3%{?dist} Summary: Hibernation setup utility for AWS EC2 Group: System Environment/Daemons diff --git a/etc/hibinit-config.cfg b/etc/hibinit-config.cfg index 90bf56f..66d5bd4 100644 --- a/etc/hibinit-config.cfg +++ b/etc/hibinit-config.cfg @@ -11,7 +11,7 @@ grub-update = True touch-swap = False # Location where to create any state files -state-dir = "/var/lib/hibinit-agent" +state-dir = /var/lib/hibinit-agent [swap] diff --git a/setup.py b/setup.py index 6264f60..e0d8e5a 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ hib_long_description = fp.read() setup(name="ec2-hibinit-agent", - version='1.0.1', + version='1.0.2', author="Anchal Agarwal", author_email="anchalag@amazon.com", tests_require=["pytest"],