8000 [3006.x] Added back Debian support for Sys V init.d service scripts by dmurphy18 · Pull Request #67909 · saltstack/salt · GitHub
[go: up one dir, main page]

Skip to content

[3006.x] Added back Debian support for Sys V init.d service scripts #67909

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 11 commits into from
Prev Previous commit
Next Next commit
Include #67914 fix nightly build package test failures
  • Loading branch information
dmurphy18 committed Mar 24, 2025
commit 16c842a1f46c8c9e29e42d8d84e9154df18fb243
4 changes: 2 additions & 2 deletions noxfile.py
8000
Original file line number Diff line number Diff line change
Expand Up @@ -1911,7 +1911,7 @@ def ci_test_onedir_pkgs(session):
except CommandFailed:
if os.environ.get("RERUN_FAILURES", "0") == "0":
# Don't rerun on failures
return
sys.exit(1)

# Don't print the system information, not the test selection on reruns
global PRINT_TEST_SELECTION
Expand Down Expand Up @@ -1962,7 +1962,7 @@ def ci_test_onedir_pkgs(session):
except CommandFailed:
if os.environ.get("RERUN_FAILURES", "0") == "0":
# Don't rerun on failures
return
sys.exit(1)
cmd_args = chunks["install"]
pytest_args = (
common_pytest_args[:]
Expand Down
2 changes: 1 addition & 1 deletion salt/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ def string(self):
version_string += f".{self.mbugfix}"
if self.pre_type:
version_string += f"{self.pre_type}{self.pre_num}"
if self.noc and self.sha:
if self.noc is not None and self.sha:
noc = self.noc
if noc < 0:
noc = "0na"
Expand Down
Loading
0