diff options
author | Robbie Smith <zoqaeski@gmail.com> | 2013-04-10 03:33:37 +0200 |
---|---|---|
committer | Robbie Smith <zoqaeski@gmail.com> | 2013-04-10 03:33:37 +0200 |
commit | 492fe67b4ae418feda69074f3335be14fbcc79ab (patch) | |
tree | 1c73e90fa2b380fd7997520de46d4b950eaee27e | |
parent | 7cd83d3db74606f6a7a881e123b0c3e49f497ed8 (diff) | |
download | netctl-492fe67b4ae418feda69074f3335be14fbcc79ab.tar.gz netctl-492fe67b4ae418feda69074f3335be14fbcc79ab.tar.xz |
Changed connections to use underscores.
-rw-r--r-- | docs/examples/mobile_ppp (renamed from docs/examples/mobile-ppp) | 2 | ||||
-rw-r--r-- | src/lib/connections/mobile_ppp (renamed from src/lib/connections/mobile-ppp) | 20 |
2 files changed, 11 insertions, 11 deletions
diff --git a/docs/examples/mobile-ppp b/docs/examples/mobile_ppp index b624175..4e5079f 100644 --- a/docs/examples/mobile-ppp +++ b/docs/examples/mobile_ppp @@ -1,6 +1,6 @@ Description='Example PPP mobile connection' Interface=ttyUSB0 -Connection=mobile-ppp +Connection=mobile_ppp IdleTimeout=30 # Debug pppd / chat output (separately from netctl) diff --git a/src/lib/connections/mobile-ppp b/src/lib/connections/mobile_ppp index 6a11fdd..fe01fe0 100644 --- a/src/lib/connections/mobile-ppp +++ b/src/lib/connections/mobile_ppp @@ -10,14 +10,14 @@ _quotestring() { echo "\"${1/\"/\\\"}\"" } -mobile-ppp_up() { +mobile_ppp_up() { local cfg local chat - mkdir -p "$STATE_DIR/mobile-ppp.${Interface}.${Profile}/" - chmod 700 "$STATE_DIR/mobile-ppp.${Interface}.${Profile}/" - cfg="$STATE_DIR/mobile-ppp.${Interface}.${Profile}/options" - chat="$STATE_DIR/mobile-ppp.${Interface}.${Profile}/modem.chat" + mkdir -p "$STATE_DIR/mobile_ppp.${Interface}.${Profile}/" + chmod 700 "$STATE_DIR/mobile_ppp.${Interface}.${Profile}/" + cfg="$STATE_DIR/mobile_ppp.${Interface}.${Profile}/options" + chat="$STATE_DIR/mobile_ppp.${Interface}.${Profile}/modem.chat" : > "${cfg}" chmod 600 "${cfg}" @@ -120,17 +120,17 @@ EOF $PPPD file "${cfg}" if [[ $? -ne 0 ]]; then - rmdir "$STATE_DIR/mobile-ppp.${Interface}.${Profile}/" + rmdir "$STATE_DIR/mobile_ppp.${Interface}.${Profile}/" report_error "Couldn't make pppd connection." return 1 fi } -mobile-ppp_down() { +mobile_ppp_down() { local cfg local chat - cfg="$STATE_DIR/mobile-ppp.${Interface}.${Profile}/options" - chat="$STATE_DIR/mobile-ppp.${Interface}.${Profile}/modem.chat" + cfg="$STATE_DIR/mobile_ppp.${Interface}.${Profile}/options" + chat="$STATE_DIR/mobile_ppp.${Interface}.${Profile}/modem.chat" PIDFILE="/var/run/ppp-${Profile}.pid" if [[ -e $PIDFILE ]]; then @@ -140,7 +140,7 @@ mobile-ppp_down() { rm "${cfg}" rm "${chat}" - rmdir "$STATE_DIR/mobile-ppp.${Interface}.${Profile}/" + rmdir "$STATE_DIR/mobile_ppp.${Interface}.${Profile}/" } |