* [ptxdist] [PATCH] net-snmp: Make config file optional and add initd script
@ 2012-05-28 12:42 Bart vdr. Meulen
2012-05-31 14:56 ` Michael Olbrich
0 siblings, 1 reply; 2+ messages in thread
From: Bart vdr. Meulen @ 2012-05-28 12:42 UTC (permalink / raw)
To: ptxdist
From: "Bart vdr. Meulen" <bartvdrmeulen@gmail.com>
Add option to make the installation of the snmpd configuration file optional.
Add option to install a startup script for snmpd agent in init.d directory
Signed-off-by: Bart vdr. Meulen <bartvdrmeulen@gmail.com>
---
rules/net-snmp.in | 12 ++++++++++++
rules/net-snmp.make | 8 ++++++++
2 files changed, 20 insertions(+)
diff --git a/rules/net-snmp.in b/rules/net-snmp.in
index 6205a19..6910f7c 100644
--- a/rules/net-snmp.in
+++ b/rules/net-snmp.in
@@ -20,6 +20,18 @@ config NET_SNMP_AGENT
bool
prompt "agent (snmpd)"
+if NET_SNMP_AGENT
+
+config NET_SNMP_AGENT_CONF
+ bool
+ prompt "install config file (/etc/snmp/snmpd.conf)"
+
+config NET_SNMP_AGENT_INITD
+ bool
+ prompt "install startup script (/etc/init.d/snmpd)"
+
+endif
+
config NET_SNMP_APPLICATIONS
bool
prompt "apps (snmpget, ...)"
diff --git a/rules/net-snmp.make b/rules/net-snmp.make
index ad2d360..49f8300 100644
--- a/rules/net-snmp.make
+++ b/rules/net-snmp.make
@@ -278,10 +278,18 @@ ifdef PTXCONF_NET_SNMP_AGENT
# agent helper libs
@$(call install_lib, net-snmp, 0, 0, 0644, libnetsnmphelpers)
+ifdef PTXCONF_NET_SNMP_AGENT_CONF
# agent configuration
@$(call install_alternative, net-snmp, 0, 0, 0644, /etc/snmp/snmpd.conf)
endif
+ifdef PTXCONF_NET_SNMP_AGENT_INITD
+# agent startup
+ @$(call install_alternative, net-snmp, 0, 0, 0755, /etc/init.d/snmpd)
+endif
+
+endif
+
ifdef PTXCONF_NET_SNMP_APPLICATIONS
# apps libs
@$(call install_lib, net-snmp, 0, 0, 0644, libnetsnmptrapd)
--
1.7.9.5
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [ptxdist] [PATCH] net-snmp: Make config file optional and add initd script
2012-05-28 12:42 [ptxdist] [PATCH] net-snmp: Make config file optional and add initd script Bart vdr. Meulen
@ 2012-05-31 14:56 ` Michael Olbrich
0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2012-05-31 14:56 UTC (permalink / raw)
To: ptxdist
On Mon, May 28, 2012 at 02:42:47PM +0200, Bart vdr. Meulen wrote:
> From: "Bart vdr. Meulen" <bartvdrmeulen@gmail.com>
>
> Add option to make the installation of the snmpd configuration file optional.
why?
> Add option to install a startup script for snmpd agent in init.d directory
>
> Signed-off-by: Bart vdr. Meulen <bartvdrmeulen@gmail.com>
> ---
> rules/net-snmp.in | 12 ++++++++++++
> rules/net-snmp.make | 8 ++++++++
> 2 files changed, 20 insertions(+)
>
> diff --git a/rules/net-snmp.in b/rules/net-snmp.in
> index 6205a19..6910f7c 100644
> --- a/rules/net-snmp.in
> +++ b/rules/net-snmp.in
> @@ -20,6 +20,18 @@ config NET_SNMP_AGENT
> bool
> prompt "agent (snmpd)"
>
> +if NET_SNMP_AGENT
> +
> +config NET_SNMP_AGENT_CONF
> + bool
> + prompt "install config file (/etc/snmp/snmpd.conf)"
> +
> +config NET_SNMP_AGENT_INITD
> + bool
> + prompt "install startup script (/etc/init.d/snmpd)"
> +
> +endif
> +
> config NET_SNMP_APPLICATIONS
> bool
> prompt "apps (snmpget, ...)"
> diff --git a/rules/net-snmp.make b/rules/net-snmp.make
> index ad2d360..49f8300 100644
> --- a/rules/net-snmp.make
> +++ b/rules/net-snmp.make
> @@ -278,10 +278,18 @@ ifdef PTXCONF_NET_SNMP_AGENT
> # agent helper libs
> @$(call install_lib, net-snmp, 0, 0, 0644, libnetsnmphelpers)
>
> +ifdef PTXCONF_NET_SNMP_AGENT_CONF
> # agent configuration
> @$(call install_alternative, net-snmp, 0, 0, 0644, /etc/snmp/snmpd.conf)
> endif
>
> +ifdef PTXCONF_NET_SNMP_AGENT_INITD
> +# agent startup
> + @$(call install_alternative, net-snmp, 0, 0, 0755, /etc/init.d/snmpd)
This file is missing.
Michael
> +endif
> +
> +endif
> +
> ifdef PTXCONF_NET_SNMP_APPLICATIONS
> # apps libs
> @$(call install_lib, net-snmp, 0, 0, 0644, libnetsnmptrapd)
> --
> 1.7.9.5
>
>
> --
> ptxdist mailing list
> ptxdist@pengutronix.de
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-05-31 14:56 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-28 12:42 [ptxdist] [PATCH] net-snmp: Make config file optional and add initd script Bart vdr. Meulen
2012-05-31 14:56 ` Michael Olbrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox