From 487f9ec9b9d0b7945aa0c7d2133e540dd918eba6 Mon Sep 17 00:00:00 2001 From: Giulio Date: Fri, 22 May 2020 18:21:26 +0200 Subject: [PATCH] Fix Crlf, again....... --- conf/etc/init.d/S10cfgbin | 40 +++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/conf/etc/init.d/S10cfgbin b/conf/etc/init.d/S10cfgbin index 8a8bb23..e50d3f4 100755 --- a/conf/etc/init.d/S10cfgbin +++ b/conf/etc/init.d/S10cfgbin @@ -1,20 +1,20 @@ -#!/bin/sh - -case "$1" in - start) - printf "Starting cfgbin: " - /usr/sbin/cfgbin - test -f /etc/serial || exit 0 - test -f /etc/ssid || exit 0 - test -f /etc/wpa || exit 0 - SSID=`cat /etc/ssid` - WPA=`cat /etc/wpa` - sed -i "s/{{SSID}}/$SSID/g" /etc/hostapd.conf - sed -i "s/{{WPA}}/$WPA/g" /etc/hostapd.conf - ;; - *) - echo "Usage: $0 {start}" - exit 1 -esac - -exit 0 \ No newline at end of file +#!/bin/sh + +case "$1" in + start) + printf "Starting cfgbin: " + /usr/sbin/cfgbin + test -f /etc/serial || exit 0 + test -f /etc/ssid || exit 0 + test -f /etc/wpa || exit 0 + SSID=`cat /etc/ssid` + WPA=`cat /etc/wpa` + sed -i "s/{{SSID}}/$SSID/g" /etc/hostapd.conf + sed -i "s/{{WPA}}/$WPA/g" /etc/hostapd.conf + ;; + *) + echo "Usage: $0 {start}" + exit 1 +esac + +exit 0