File: isinstallable

package info (click to toggle)
lvmcfg 1.72
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,088 kB
  • sloc: sh: 562; makefile: 5
file content (11 lines) | stat: -rwxr-xr-x 226 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
#! /bin/sh

# lvmcfg should not be used on architectures that use partman
# Check to see if partitioner is installed, which is what all
# other architectures use

if [ -d /usr/share/partitioner ]; then
	exit 0
else
	exit 1
fi