Adding config files

This commit is contained in:
Axel Rafn
2020-12-16 14:24:27 +00:00
parent 64fcf1efb8
commit 6ff3eebcb3
6 changed files with 67 additions and 1 deletions

21
v0xb0x-setup.sh Normal file
View File

@ -0,0 +1,21 @@
#!/bin/sh
# Update the system first
apt-get update
apt-get dist-upgrade -y
apt-get install -y hostapd dnsmasq
systemctl stop hostapd
systemctl stop dnsmasq
# Modify /etc/dhcpcd.conf
cat ./configs/dhcpcd.conf >> /etc/dhcpcd.conf
# Make new /etc/dnsmasq.conf
mv /etc/dnsmasq.conf /etc/dnsmasq.conf.orig
cat ./configs/dnsmasq.conf >> /etc/dnsmasq.conf
# Create a new hostadp.conf
cat ./configs/hostapd.conf > /etc/hostapd/hostapd.conf
# Add our config to the default hostapd.conf
cat ./configs/hostapd.default.conf >> /etc/default/hostapd.conf