#!/bin/sh
# Copyright (C) 2011 O.S. Systems Software LTDA.
# Licensed on MIT

noautomount_enabled() {
	return 0
}

noautomount_run() {
	if [ "$bootparam_root" -a "$bootparam_root" != "/dev/ram0" ]; then
		debug "disable automount"
		rm /etc/udev/rules.d/automount.rules
	fi
}
