forked from strongswan/strongswan
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
packaging: fixes for debian and spec files
Various fixes for debian and spec files: Changed control to add python3 as dependency Changed changelog to make the package as unstable Changed postint and prerm file names Changed name of package in spec file to strongswan instead of strongswan-bf to align with debian Disabled legacy strongswan-starter service Pumped version to 5.9.10-2.bf Signed-off-by: Feras Bisharat <fbisharat@nvidia.com>
- Loading branch information
Showing
8 changed files
with
40 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
strongswan (5.9.10-1.bf) RELEASED; | ||
strongswan (5.9.10-2.bf) unstable; urgency=low | ||
|
||
* Initial bluefield release. | ||
|
||
-- Feras Bisharat <fbisharat@nvidia.com> Tue, 05 Oct 2023 14:07:36 +0200 | ||
-- Feras Bisharat <fbisharat@nvidia.com> Thu, 26 Sep 2024 13:09:38 +0300 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/sh | ||
set -e | ||
|
||
# Use the new strongswan.service instead of the legacy strongswan-starter | ||
# systemctl unmask strongswan-starter.service | ||
# systemctl enable strongswan-starter.service | ||
systemctl stop strongswan-starter.service > /dev/null 2>&1 || true | ||
systemctl disable strongswan-starter.service > /dev/null 2>&1 || true | ||
|
||
# systemctl unmask strongswan.service || true | ||
# systemctl enable strongswan.service || true | ||
|
||
#DEBHELPER# | ||
|
||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/sh | ||
set -e | ||
|
||
systemctl stop strongswan-starter.service > /dev/null 2>&1 || true | ||
systemctl disable strongswan-starter.service > /dev/null 2>&1 || true | ||
# systemctl stop strongswan.service || true | ||
# systemctl disable strongswan.service || true | ||
|
||
#DEBHELPER# | ||
|
||
exit 0 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters