summaryrefslogtreecommitdiffstats
path: root/lib/MGA/DrakISO/Storage.pm
blob: b9497313ce70bf1a5292de374408b8a97f016190 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package MGA::DrakISO::Storage;

use strict;

our %storage_types = (
    iso => {
        fs => 'iso9660',
        read_only => 1,
        source => 'LABEL=MGAISOROOT',
    },
);

1;