diff --git a/manifests/allow.pp b/manifests/allow.pp index e645e4c..88297d1 100644 --- a/manifests/allow.pp +++ b/manifests/allow.pp @@ -1,6 +1,6 @@ define interfaces::allow ( $subsystem, $order='UNSET' ) { $order_real = $order ? { - 'UNSET' => 02, + 'UNSET' => 04, default => $order, } concat::fragment{"interfaces::allow-${subsystem}_${name}": diff --git a/manifests/auto.pp b/manifests/auto.pp index f2b1d21..755f908 100644 --- a/manifests/auto.pp +++ b/manifests/auto.pp @@ -1,8 +1,8 @@ define interfaces::auto ( $order='UNSET' ) { $order_real = $order ? { 'UNSET' => $name ? { - 'lo' => 06, - default => 07, + 'lo' => 02, + default => 03, }, default => $order } diff --git a/manifests/iface.pp b/manifests/iface.pp index 5b0acd2..8362b0f 100644 --- a/manifests/iface.pp +++ b/manifests/iface.pp @@ -35,8 +35,8 @@ $order_real = $order ? { 'UNSET' => $ifname_real ? { - 'lo' => 04, - default => 05, + 'lo' => 06, + default => 07, }, default => $order, } diff --git a/manifests/mapping.pp b/manifests/mapping.pp index 0b95642..f61df3d 100644 --- a/manifests/mapping.pp +++ b/manifests/mapping.pp @@ -1,6 +1,6 @@ define interfaces::mapping ( $script, $maps, $order='UNSET' ) { $order_real = $order ? { - 'UNSET' => 03, + 'UNSET' => 05, default => $order, } concat::fragment{"interfaces::mapping_${name}":