Skip to content

Commit

Permalink
3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lbr38 committed Oct 16, 2024
1 parent 3260fa6 commit e900b62
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,7 @@ jobs:
release_name: ${{ env.VERSION }}
body: |
**Changes**:
- Added `--dry-run` option to simulate an update
- Removed the `--set-update-method` and `--get-update-method` options, now the update method is always one package at a time (easier to log)
- Reposerver module: improved logs output cleaning before sending it to the reposerver
- Fixed mail report sending
draft: false
prerelease: false

Expand Down
4 changes: 2 additions & 2 deletions src/controllers/App/Service.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ def main(self):

try:
print("[linupdate] Hi, I'm linupdate service. I will start all enabled module agents and let them run in background. Stop me and I will stop all module agents.")
# Wait 3 seconds to let the above message to be read
time.sleep(3)
# Wait 10 seconds to let the above message to be read
time.sleep(10)

while True:
# Restart check
Expand Down
1 change: 1 addition & 0 deletions src/controllers/Mail.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ def send(self, subject: str, body_content: str, recipient: list, logfile = None)

# Send the message via our own SMTP server
s = smtplib.SMTP('localhost')
# s = smtplib.SMTP(socket.getfqdn())
s.send_message(msg)
s.quit()

2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.4.0
3.5.0

0 comments on commit e900b62

Please sign in to comment.