File: do_option

package info (click to toggle)
partman-partitioning 115
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,692 kB
  • ctags: 23
  • sloc: sh: 1,175; makefile: 18
file content (14 lines) | stat: -rwxr-xr-x 159 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

dev=$2
id=$3

mkdir -p $dev/$id

echo biosgrub >$dev/$id/method
>$dev/$id/bootable

rm -f $dev/$id/use_filesystem
rm -f $dev/$id/filesystem

exit 0