ajout des sources du paquet debian

This commit is contained in:
Vincent BENOIT
2022-11-21 17:41:47 +01:00
parent 64adac2a00
commit 8a2641afbe
13 changed files with 144 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
kinerpisys (1.0.0) stable; urgency=medium
* Initial Release.
-- Vincent BENOIT <vincent.benoit@benserv.fr> Mon, 21 Nov 2022 17:26:48 +0100

View File

@@ -0,0 +1 @@
11

View File

@@ -0,0 +1,12 @@
Source: kinerpisys
Section: misc
Priority: optional
Maintainer: Vincent BENOIT <vincent.benoit@scle.fr>
Build-Depends: debhelper (>= 11)
Standards-Version: 4.1.3
Homepage: https://git.nas.benserv.fr/vincent/KineRPISys
Package: kinerpisys
Architecture: all
Depends: ${misc:Depends}, dnsmasq, hostapd, iptables
Description: Meta-paquet pour la configuration du Système Linux de la Raspberry Pi pour le projet KineInterCOM

View File

@@ -0,0 +1,5 @@
dhcpcd.conf /etc/
dnsmasq.conf /etc/
hostapd.conf /etc/hostapd/
hostname /etc/
hosts /etc/

7
kinerpisys-1.0.0/debian/rules Executable file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/make -f
# See debhelper(7) (uncomment to enable)
# output every command that modifies files on the build system.
#export DH_VERBOSE = 1
%:
dh $@

View File

@@ -0,0 +1 @@
3.0 (native)

View File

@@ -0,0 +1,66 @@
# A sample configuration for dhcpcd.
# See dhcpcd.conf(5) for details.
# Allow users of this group to interact with dhcpcd via the control socket.
#controlgroup wheel
# Inform the DHCP server of our hostname for DDNS.
hostname
# Use the hardware address of the interface for the Client ID.
clientid
# or
# Use the same DUID + IAID as set in DHCPv6 for DHCPv4 ClientID as per RFC4361.
# Some non-RFC compliant DHCP servers do not reply with this set.
# In this case, comment out duid and enable clientid above.
#duid
# Persist interface configuration when dhcpcd exits.
persistent
# Rapid commit support.
# Safe to enable by default because it requires the equivalent option set
# on the server to actually work.
option rapid_commit
# A list of options to request from the DHCP server.
option domain_name_servers, domain_name, domain_search, host_name
option classless_static_routes
# Respect the network MTU. This is applied to DHCP routes.
option interface_mtu
# Most distributions have NTP support.
#option ntp_servers
# A ServerID is required by RFC2131.
require dhcp_server_identifier
# Generate SLAAC address using the Hardware Address of the interface
#slaac hwaddr
# OR generate Stable Private IPv6 Addresses based from the DUID
slaac private
# Example static IP configuration:
interface eth0
static ip_address=192.168.10.10/24
static routers=192.168.10.1
static domain_name_servers=192.168.10.1
#static ip6_address=fd51:42f8:caae:d92e::ff/64
#static domain_name_servers=192.168.0.1 8.8.8.8 fd51:42f8:caae:d92e::1
interface wlan0
static ip_address=10.1.1.10/24
static routers=10.1.1.1
static domain_name_servers=10.1.1.1
nohook wpa_supplicant
# It is possible to fall back to a static IP if DHCP fails:
# define static profile
#profile static_eth0
#static ip_address=192.168.1.23/24
#static routers=192.168.1.1
#static domain_name_servers=192.168.1.1
# fallback to static profile on eth0
#interface eth0
#fallback static_eth0

View File

@@ -0,0 +1,3 @@
interface=wlan0
bind-dynamic
dhcp-range=10.1.1.10,10.1.1.150,255.255.255.0,24h

23
kinerpisys-1.0.0/hostapd Normal file
View File

@@ -0,0 +1,23 @@
# Defaults for hostapd initscript
#
# WARNING: The DAEMON_CONF setting has been deprecated and will be removed
# in future package releases.
#
# See /usr/share/doc/hostapd/README.Debian for information about alternative
# methods of managing hostapd.
#
# Uncomment and set DAEMON_CONF to the absolute path of a hostapd configuration
# file and hostapd will be started during system boot. An example configuration
# file can be found at /usr/share/doc/hostapd/examples/hostapd.conf.gz
#
DAEMON_CONF="/etc/hostapd/hostapd.conf"
# Additional daemon options to be appended to hostapd command:-
# -d show more debug messages (-dd for even more)
# -K include key data in debug messages
# -t include timestamps in some debug messages
#
# Note that -B (daemon mode) and -P (pidfile) options are automatically
# configured by the init.d script and must not be added to DAEMON_OPTS.
#
#DAEMON_OPTS=""

View File

@@ -0,0 +1,14 @@
interface=wlan0
driver=nl80211
hw_mode=g
channel=7
wmm_enabled=0
macaddr_acl=0
auth_algs=1
ignore_broadcast_ssid=0
wpa=2
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
rsn_pairwise=CCMP
ssid=Kine_hotspot
wpa_passphrase=kineintercom

View File

@@ -0,0 +1 @@
kineintercom

6
kinerpisys-1.0.0/hosts Normal file
View File

@@ -0,0 +1,6 @@
127.0.0.1 localhost
::1 localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
127.0.1.1 kineintercom