Skip to content
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

Lintian warnings #788

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions provd/debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@ Rules-Requires-Root: no

Package: provd
Architecture: any
Built-Using: ${misc:Built-Using},
Pre-Depends: gnome-initial-setup
Depends: ${misc:Depends},
${shlibs:Depends},
adduser,
Description: Ubuntu init backend
Backend service used by Ubuntu init to
perform different system setup activities.
7 changes: 0 additions & 7 deletions provd/debian/copyright
Original file line number Diff line number Diff line change
Expand Up @@ -350,13 +350,6 @@ License: Expat
CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

License: GPL-3
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 3 dated June, 2007.
On Debian systems, the complete text of version 3 of the GNU General
Public License can be found in '/usr/share/common-licenses/GPL-3'.

License: ISC
The ISC License
.
Expand Down
1 change: 1 addition & 0 deletions provd/debian/provd.lintian-overrides
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
provd: spelling-error-in-binary
2 changes: 1 addition & 1 deletion provd/internal/daemon/daemon.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func New(ctx context.Context, registerGRPCService GRPCServiceRegisterer, args ..

// Ensure selected socket exists.
if _, err := os.Stat(lis.Addr().String()); err != nil {
return nil, fmt.Errorf("%s can’t be acccessed: %v", lis.Addr().String(), err)
return nil, fmt.Errorf("%s can’t be accessed: %v", lis.Addr().String(), err)
}

return &Daemon{
Expand Down
Loading