diff options
| author | Joey Hess <joeyh@joeyh.name> | 2017-02-04 17:16:33 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2017-02-04 17:16:33 -0400 |
| commit | 11a4f3d9f73738582c8c6781f72106711e167737 (patch) | |
| tree | 7e498cac82c7ef453ff76e83b339b68cab2232e0 /src | |
| parent | cdfa8a919730b2e58e1ef243fd2472dec1ad67a3 (diff) | |
add missing case for ArchLinux
Diffstat (limited to 'src')
| -rw-r--r-- | src/Propellor/Property/Chroot.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Propellor/Property/Chroot.hs b/src/Propellor/Property/Chroot.hs index cb693a73..5f2e6b32 100644 --- a/src/Propellor/Property/Chroot.hs +++ b/src/Propellor/Property/Chroot.hs @@ -93,6 +93,7 @@ instance ChrootBootstrapper Debootstrapped where buildchroot (Debootstrapped cf) system loc = case system of (Just s@(System (Debian _ _) _)) -> Right $ debootstrap s (Just s@(System (Buntish _) _)) -> Right $ debootstrap s + (Just (System ArchLinux _)) -> Left "Arch Linux not supported by debootstrap." (Just (System (FreeBSD _) _)) -> Left "FreeBSD not supported by debootstrap." Nothing -> Left "Cannot debootstrap; OS not specified" where |
