File: system-config-lvm.sh

package info (click to toggle)
system-config-lvm 1.1.18-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,824 kB
  • ctags: 1,369
  • sloc: python: 8,148; sh: 528; makefile: 157
file content (9 lines) | stat: -rwxr-xr-x 178 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -e

if [ `id -u` -eq 0 ]; then
	invoke-rc.d lvm2 start;
	/usr/share/system-config-lvm/system-config-lvm.py;
else
	su-to-root -X -c "/usr/bin/system-config-lvm";
fi