예제 #1
0
파일: zero.c 프로젝트: FengYang/libguestfs
int
optgroup_wipefs_available (void)
{
  return prog_exists (str_wipefs);
}
예제 #2
0
파일: md.c 프로젝트: limohua/libguestfs
int
optgroup_mdadm_available (void)
{
  return prog_exists ("mdadm");
}
예제 #3
0
파일: luks.c 프로젝트: yumingfei/libguestfs
int
optgroup_luks_available (void)
{
  return prog_exists (str_cryptsetup);
}
예제 #4
0
int
optgroup_mdadm_available (void)
{
  return prog_exists (str_mdadm);
}
예제 #5
0
int
optgroup_scrub_available (void)
{
  return prog_exists (str_scrub);
}
예제 #6
0
int
optgroup_grub_available (void)
{
  return prog_exists ("grub-install");
}
예제 #7
0
파일: ldm.c 프로젝트: libguestfs/libguestfs
int
optgroup_ldm_available (void)
{
  return prog_exists ("ldmtool");
}
예제 #8
0
int
optgroup_linuxmodules_available (void)
{
  return prog_exists (str_modprobe);
}
예제 #9
0
파일: lvm.c 프로젝트: limohua/libguestfs
int
optgroup_lvm2_available (void)
{
  return prog_exists ("lvm");
}
예제 #10
0
int
optgroup_rsync_available (void)
{
  return prog_exists (str_rsync);
}
예제 #11
0
int
optgroup_gdisk_available (void)
{
  return prog_exists ("sgdisk");
}
예제 #12
0
파일: xfs.c 프로젝트: will-Do/libguestfs
int
optgroup_xfs_available (void)
{
  return prog_exists (str_mkfs_xfs);
}
예제 #13
0
int
optgroup_gdisk_available (void)
{
  return prog_exists (str_sgdisk);
}
예제 #14
0
파일: grub.c 프로젝트: ArikaChen/libguestfs
int
optgroup_grub_available (void)
{
  return prog_exists (str_grub_install);
}
예제 #15
0
int
optgroup_ntfs3g_available (void)
{
  return prog_exists (str_ntfs3g_probe);
}
예제 #16
0
파일: tar.c 프로젝트: imcleod/libguestfs
int
optgroup_xz_available (void)
{
  return prog_exists ("xz");
}
예제 #17
0
int
optgroup_ntfsprogs_available (void)
{
  return prog_exists (str_ntfsresize);
}
예제 #18
0
int
optgroup_lvm2_available (void)
{
  return prog_exists (str_lvm);
}
예제 #19
0
파일: xfs.c 프로젝트: msmhrt/libguestfs
int
optgroup_xfs_available (void)
{
  return prog_exists ("mkfs.xfs");
}