#!/bin/bash

PROGRAM=/sbin/fstrim
ARGS="-v -a"
RUNLEVEL=S
NEEDS='+local_fs'

. /etc/init.d/smgl_init

function start()
{
  true
}

function stop()
{
  echo "Sending TRIM instruction to all filesystems..."
  loadproc $PROGRAM $ARGS
}

