1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
Description: Insert the bash shebang in the example scripts
.
python-netsnmpagent (0.6.0-1) unstable; urgency=low
.
* Initial release. (Closes: #932925)
Author: Salvo 'LtWorf' Tomaselli <ltworf@debian.org>
Bug-Debian: https://bugs.debian.org/932925
Forwarded: https://github.com/pief/python-netsnmpagent/pull/49
--- python-netsnmpagent-0.6.0.orig/examples/run_simple_agent.sh
+++ python-netsnmpagent-0.6.0/examples/run_simple_agent.sh
@@ -1,3 +1,4 @@
+#!/bin/bash
#
# python-netsnmpagent simple example agent
#
--- python-netsnmpagent-0.6.0.orig/examples/run_simple_agent_over_tcpsocket.sh
+++ python-netsnmpagent-0.6.0/examples/run_simple_agent_over_tcpsocket.sh
@@ -1,4 +1,4 @@
-#
+#!/bin/bash
# python-netsnmpagent simple example agent
#
# Copyright (c) 2013-2016 Pieter Hollants <pieter@hollants.com>
--- python-netsnmpagent-0.6.0.orig/examples/run_threading_agent.sh
+++ python-netsnmpagent-0.6.0/examples/run_threading_agent.sh
@@ -1,3 +1,4 @@
+#!/bin/bash
#
# python-netsnmpagent example agent with threading
#
|