
Create Debian package for filesystem-scripts Test: PASS: built image successfully PASS: Installed image successfully (with filesystem-scripts) PASS: uexportfs loaded/active PASS: build updated latest image (fresh env) PASS: bootstrap successfully PASS: system unlocked and checked sm-dump output Story: 2009256 Task: 45000 Signed-off-by: aoliveir <adriano.oliveira@windriver.com> Change-Id: If8e41498666b9c015de3ff44cca5186d087ec880
20 lines
362 B
Bash
20 lines
362 B
Bash
#! /bin/sh
|
|
#
|
|
# Copyright (c) 2013-2014 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
### BEGIN INIT INFO
|
|
# Provides: uexportfs
|
|
# Default-Start: 3
|
|
# Default-Stop:
|
|
# Short-Description: Used to remove all exported filesystems on a boot
|
|
### END INIT INFO
|
|
|
|
PATH=/sbin:/bin:/usr/sbin:/usr/bin
|
|
|
|
exportfs -r > /dev/null 2>&1
|
|
|
|
: exit 0
|