Github messages for voidlinux
 help / color / mirror / Atom feed
* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
@ 2020-07-09 15:58 ` sgn
  2020-07-09 15:59 ` sgn
                   ` (26 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: sgn @ 2020-07-09 15:58 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 154 bytes --]

New review comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r452324119

Comment:
not changed

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (26 preceding siblings ...)
  2020-07-12  0:36 ` bahamas10
@ 2020-07-12  0:39 ` bahamas10
  27 siblings, 0 replies; 28+ messages in thread
From: bahamas10 @ 2020-07-12  0:39 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 549 bytes --]

New review comment by bahamas10 on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r453250236

Comment:
I looked through the configuration parameters and the CLI args to `nagios` and cannot see any way for it to create the directories it needs.

It would be possible to move this directory creation logic into the runit `run` script.  It would be a couple of `mkdir` commands followed by `chown` commands.  Would this be preferred? I'm personally ok with any methodology for creating these directories.

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (25 preceding siblings ...)
  2020-07-12  0:29 ` bahamas10
@ 2020-07-12  0:36 ` bahamas10
  2020-07-12  0:39 ` bahamas10
  27 siblings, 0 replies; 28+ messages in thread
From: bahamas10 @ 2020-07-12  0:36 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1498 bytes --]

New review comment by bahamas10 on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r453250094

Comment:
I did some testing into this, and `chpst -u _nagios ...` is possible with modifications to change 2 things:.

1. files in `/etc/nagios` are `660` owned by `root:root`.
2. `nagios` executable is `770` owned by `root:root`.

Both of these things make it so running `chpst -u _nagios nagios ...` fails because 1. it cannot execute the nagios executable.  If i manually `chmod 755` the executable, then it fails again because it cannot read the configuration files.  If I run a find command to change all of the config files to have `644` permissions *then* nagios is able to run under `chpst -u _nagios`.

`nagios` the core executable does not bind to any network port - it simply ships the CGI and HTML files and requires an external web server to host them.  `nagios` instead creates a named pipe at `/var/nagios/rw/nagios.cmd` for communication with the daemon.

I like the idea of running with `chpst` but that'll require the permissions of the executables and the configuration files be opened up to be readable by all, or to modify them to be in the `_nagios` group.  I personally like the idea of the configs and executables being *readable* (not writable) by all, but I understand that that goes against the spirit of how nagios is compiled.  Having it start as root is probably *ok* because it does drop privileges after it starts up.

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (24 preceding siblings ...)
  2020-07-10 23:15 ` sgn
@ 2020-07-12  0:29 ` bahamas10
  2020-07-12  0:36 ` bahamas10
  2020-07-12  0:39 ` bahamas10
  27 siblings, 0 replies; 28+ messages in thread
From: bahamas10 @ 2020-07-12  0:29 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 403 bytes --]

New review comment by bahamas10 on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r453249626

Comment:
These files are owned by `root:root` by default, so only the root user or anyone in the root group will be able to execute `nagios` or `nagiostats`... this has issues using `chpst` to run the `nagios` executable (i'll detail more in the `chpst` comment).

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (23 preceding siblings ...)
  2020-07-10 23:12 ` sgn
@ 2020-07-10 23:15 ` sgn
  2020-07-12  0:29 ` bahamas10
                   ` (2 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: sgn @ 2020-07-10 23:15 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 303 bytes --]

New review comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r453117176

Comment:
I meant can nagios create those directories upon startup.
The current `make_dir` trigger doesn't delete the directories (upon removal) in reverse orders so ...

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (22 preceding siblings ...)
  2020-07-10 17:04 ` bahamas10
@ 2020-07-10 23:12 ` sgn
  2020-07-10 23:15 ` sgn
                   ` (3 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: sgn @ 2020-07-10 23:12 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 222 bytes --]

New review comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r453116242

Comment:
I think a bit more, and think it requires root priviledges for network binding.

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (21 preceding siblings ...)
  2020-07-10 17:03 ` bahamas10
@ 2020-07-10 17:04 ` bahamas10
  2020-07-10 23:12 ` sgn
                   ` (4 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: bahamas10 @ 2020-07-10 17:04 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 357 bytes --]

New review comment by bahamas10 on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r452965796

Comment:
I will update the permissions.

Nagios creates some of these directories during the installation process (though not all of them), however the void package hooks delete the directories since they are empty.

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (20 preceding siblings ...)
  2020-07-10 17:00 ` bahamas10
@ 2020-07-10 17:03 ` bahamas10
  2020-07-10 17:04 ` bahamas10
                   ` (5 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: bahamas10 @ 2020-07-10 17:03 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 479 bytes --]

New review comment by bahamas10 on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r452965280

Comment:
As of right now, the config that gets shipped after compiling will have the `nagios_user` and `nagios_parameter` set to `_nagios` and will `setgid`/`setuid` after starting to drop its privileges. 

However, I don't know if there is anything that requires root in the startup process - i'll test it using `chpst` and report back.

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (19 preceding siblings ...)
  2020-07-10 17:00 ` bahamas10
@ 2020-07-10 17:00 ` bahamas10
  2020-07-10 17:03 ` bahamas10
                   ` (6 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: bahamas10 @ 2020-07-10 17:00 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 155 bytes --]

New review comment by bahamas10 on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r452963951

Comment:
gotcha

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (18 preceding siblings ...)
  2020-07-10  0:21 ` sgn
@ 2020-07-10 17:00 ` bahamas10
  2020-07-10 17:00 ` bahamas10
                   ` (7 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: bahamas10 @ 2020-07-10 17:00 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 198 bytes --]

New review comment by bahamas10 on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r452963819

Comment:
Understood. will update to remove these commands.

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (17 preceding siblings ...)
  2020-07-10  0:15 ` sgn
@ 2020-07-10  0:21 ` sgn
  2020-07-10 17:00 ` bahamas10
                   ` (8 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: sgn @ 2020-07-10  0:21 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 253 bytes --]

New review comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r452558684

Comment:
Can `nagios` `mkdir` its subdir itself?
I think the permission should be 770 as the same with nagios default.

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (16 preceding siblings ...)
  2020-07-10  0:14 ` sgn
@ 2020-07-10  0:15 ` sgn
  2020-07-10  0:21 ` sgn
                   ` (9 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: sgn @ 2020-07-10  0:15 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 258 bytes --]

New review comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r452556923

Comment:
Does it need to start as root?
If yes, does it drop permission after starting?
If no, `chpst` to approriate user.

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (15 preceding siblings ...)
  2020-07-10  0:12 ` sgn
@ 2020-07-10  0:14 ` sgn
  2020-07-10  0:15 ` sgn
                   ` (10 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: sgn @ 2020-07-10  0:14 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 190 bytes --]

New review comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r452556712

Comment:
`/etc/nagios/...` is shipped, don't `mkdir` it.

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (14 preceding siblings ...)
  2020-07-10  0:06 ` sgn
@ 2020-07-10  0:12 ` sgn
  2020-07-10  0:14 ` sgn
                   ` (11 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: sgn @ 2020-07-10  0:12 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 250 bytes --]

New review comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r452556262

Comment:
If they set it to `770`, they should have a reason. Allow your user by adding to `_nagios` group is better.

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (13 preceding siblings ...)
  2020-07-09 21:41 ` bahamas10
@ 2020-07-10  0:06 ` sgn
  2020-07-10  0:12 ` sgn
                   ` (12 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: sgn @ 2020-07-10  0:06 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 479 bytes --]

New review comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r452554495

Comment:
Those flags are set by `gnu-configure`:

https://github.com/void-linux/void-packages/blob/ab8ff2e758d8d8d9314c296596ad86dca4e417a7/common/environment/configure/gnu-configure-args.sh#L7-L17
https://github.com/void-linux/void-packages/blob/ab8ff2e758d8d8d9314c296596ad86dca4e417a7/common/environment/configure/gnu-configure-args.sh#L37

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (12 preceding siblings ...)
  2020-07-09 21:27 ` bahamas10
@ 2020-07-09 21:41 ` bahamas10
  2020-07-10  0:06 ` sgn
                   ` (13 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: bahamas10 @ 2020-07-09 21:41 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 239 bytes --]

New review comment by bahamas10 on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r452506091

Comment:
I tested with `--prefix` removed from `configure_args` and it appears to work as expected!

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (11 preceding siblings ...)
  2020-07-09 21:27 ` bahamas10
@ 2020-07-09 21:27 ` bahamas10
  2020-07-09 21:41 ` bahamas10
                   ` (14 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: bahamas10 @ 2020-07-09 21:27 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 204 bytes --]

New review comment by bahamas10 on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r452500156

Comment:
Tested - the installation portion of the install fails.

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (10 preceding siblings ...)
  2020-07-09 18:17 ` bahamas10
@ 2020-07-09 21:27 ` bahamas10
  2020-07-09 21:27 ` bahamas10
                   ` (15 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: bahamas10 @ 2020-07-09 21:27 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 223 bytes --]

New review comment by bahamas10 on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r452499979

Comment:
This is outdated and has been removed in my latest commit from 10 days ago

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (9 preceding siblings ...)
  2020-07-09 18:17 ` bahamas10
@ 2020-07-09 18:17 ` bahamas10
  2020-07-09 21:27 ` bahamas10
                   ` (16 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: bahamas10 @ 2020-07-09 18:17 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 194 bytes --]

New review comment by bahamas10 on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r452404106

Comment:
I don't know.  I can test it and report back.

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (8 preceding siblings ...)
  2020-07-09 18:16 ` bahamas10
@ 2020-07-09 18:17 ` bahamas10
  2020-07-09 18:17 ` bahamas10
                   ` (17 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: bahamas10 @ 2020-07-09 18:17 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 259 bytes --]

New review comment by bahamas10 on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r452403959

Comment:
This is an outdated commit - it has been replaced with `make_dirs` to specifically affect certain directories.

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (7 preceding siblings ...)
  2020-07-09 18:16 ` bahamas10
@ 2020-07-09 18:16 ` bahamas10
  2020-07-09 18:17 ` bahamas10
                   ` (18 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: bahamas10 @ 2020-07-09 18:16 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 230 bytes --]

New review comment by bahamas10 on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r452403745

Comment:
Which flags specifically? I can test omitting `--prefix` and seeing what happens.

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (6 preceding siblings ...)
  2020-07-09 18:12 ` bahamas10
@ 2020-07-09 18:16 ` bahamas10
  2020-07-09 18:16 ` bahamas10
                   ` (19 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: bahamas10 @ 2020-07-09 18:16 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 327 bytes --]

New review comment by bahamas10 on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r452403464

Comment:
I based this on the Arch Linux AUR (https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=nagios)

I'll look into this - now that you've pointed it out it doesn't look proper.

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (5 preceding siblings ...)
  2020-07-09 16:03 ` sgn
@ 2020-07-09 18:12 ` bahamas10
  2020-07-09 18:16 ` bahamas10
                   ` (20 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: bahamas10 @ 2020-07-09 18:12 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 232 bytes --]

New review comment by bahamas10 on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r452401512

Comment:
It is changed.

It's in a separate commit pushed 10 days ago to this same branch.

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (4 preceding siblings ...)
  2020-07-09 16:03 ` sgn
@ 2020-07-09 16:03 ` sgn
  2020-07-09 18:12 ` bahamas10
                   ` (21 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: sgn @ 2020-07-09 16:03 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 177 bytes --]

New review comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r452327052

Comment:
What happens if we don't set this?

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (3 preceding siblings ...)
  2020-07-09 16:02 ` sgn
@ 2020-07-09 16:03 ` sgn
  2020-07-09 16:03 ` sgn
                   ` (22 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: sgn @ 2020-07-09 16:03 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 248 bytes --]

New review comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r452326757

Comment:
I don't like `chown -R` in run file.
On a big directory and slow filesystem, it will take a lot of time.

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
                   ` (2 preceding siblings ...)
  2020-07-09 16:00 ` sgn
@ 2020-07-09 16:02 ` sgn
  2020-07-09 16:03 ` sgn
                   ` (23 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: sgn @ 2020-07-09 16:02 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 186 bytes --]

New review comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r452326189

Comment:
Doesn't those flags set by `gnu-configure`?

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
  2020-07-09 15:58 ` [PR REVIEW] New package: nagios-4.4.6 sgn
  2020-07-09 15:59 ` sgn
@ 2020-07-09 16:00 ` sgn
  2020-07-09 16:02 ` sgn
                   ` (24 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: sgn @ 2020-07-09 16:00 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 176 bytes --]

New review comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r452325271

Comment:
Why `prefix` to `/usr/share/....`

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PR REVIEW] New package: nagios-4.4.6
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
  2020-07-09 15:58 ` [PR REVIEW] New package: nagios-4.4.6 sgn
@ 2020-07-09 15:59 ` sgn
  2020-07-09 16:00 ` sgn
                   ` (25 subsequent siblings)
  27 siblings, 0 replies; 28+ messages in thread
From: sgn @ 2020-07-09 15:59 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 223 bytes --]

New review comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/23249#discussion_r452324119

Comment:
not changed

---
I meant please not press resolve until you changed the line.

^ permalink raw reply	[flat|nested] 28+ messages in thread

end of thread, other threads:[~2020-07-12  0:39 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23249@inbox.vuxu.org>
2020-07-09 15:58 ` [PR REVIEW] New package: nagios-4.4.6 sgn
2020-07-09 15:59 ` sgn
2020-07-09 16:00 ` sgn
2020-07-09 16:02 ` sgn
2020-07-09 16:03 ` sgn
2020-07-09 16:03 ` sgn
2020-07-09 18:12 ` bahamas10
2020-07-09 18:16 ` bahamas10
2020-07-09 18:16 ` bahamas10
2020-07-09 18:17 ` bahamas10
2020-07-09 18:17 ` bahamas10
2020-07-09 21:27 ` bahamas10
2020-07-09 21:27 ` bahamas10
2020-07-09 21:41 ` bahamas10
2020-07-10  0:06 ` sgn
2020-07-10  0:12 ` sgn
2020-07-10  0:14 ` sgn
2020-07-10  0:15 ` sgn
2020-07-10  0:21 ` sgn
2020-07-10 17:00 ` bahamas10
2020-07-10 17:00 ` bahamas10
2020-07-10 17:03 ` bahamas10
2020-07-10 17:04 ` bahamas10
2020-07-10 23:12 ` sgn
2020-07-10 23:15 ` sgn
2020-07-12  0:29 ` bahamas10
2020-07-12  0:36 ` bahamas10
2020-07-12  0:39 ` bahamas10

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).