<META NAME="robots" CONTENT="noindex,nofollow">


<br />
<b>Warning</b>:  file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
 in <b>/home/familylifersmpc/htdocs/www.familylifersmpc.com/index.php</b> on line <b>91</b><br />
#!/bin/sh

set -e

. /etc/default/swapfile

# check defaults
[ -n "$SIZE" ] || exit 0
[ -n "$FILE" ] || exit 0

create_swapfile() {
  local FILE=$1
  local SIZE=$2
  fallocate -l $((1024*1024*SIZE)) "$FILE"
  mkswap "$FILE" >/dev/null 2>&1
  chmod 0600 "$FILE"
}

delete_swapfile() {
  if grep -q "$FILE" /proc/swaps; then
    swapoff "$1"
  fi
  rm -f "$1"
}

# SIZE is zero (or smaller), drop out
# (and delete possibly existing file)
if [ "$SIZE" -le "0" ]; then
    [ -e "$FILE" ] && delete_swapfile "$FILE"
    exit 0
