Move content from stx-utils into stx-integ or stx-update
Packages will be relocated to
stx-update:
enable-dev-patch
extras
stx-integ:
config-files/
io-scheduler
filesystem/
filesystem-scripts
grub/
grubby
logging/
logmgmt
tools/
collector
monitor-tools
tools/engtools/
hostdata-collectors
parsers
utilities/
build-info
branding (formerly wrs-branding)
platform-util
Change-Id: I33cb6b2660f0276b4af1dd7ddd1a2652f53f8f30
Story: 2002801
Task: 22687
Signed-off-by: Scott Little <scott.little@windriver.com>
20 lines
368 B
Bash
20 lines
368 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
|