diff options
author | carlosg <carlosg> | 2003-03-12 23:01:31 +0000 |
---|---|---|
committer | carlosg <carlosg> | 2003-03-12 23:01:31 +0000 |
commit | a3ab8b89f11de8335dcc076868495571e6cce49f (patch) | |
tree | b8802e6902f98982240ba8bfe5578d39672778ad | |
parent | 520988046709e0e006c84694c968aae2d66c5b69 (diff) |
2003-03-12 Carlos Garnacho Parro <garnacho@tuxerver.net>
* time-conf.in, boot-conf.in, users-conf.in, platform.in:
patch by Todd Kulesza <todd@dropline.net>, it adds support
for Slackware 8.1 in time-admin, boot-admin and users-admin.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | boot-conf.in | 2 | ||||
-rw-r--r-- | platform.pl.in | 1 | ||||
-rwxr-xr-x | time-conf.in | 3 | ||||
-rw-r--r-- | users-conf.in | 3 |
5 files changed, 12 insertions, 3 deletions
@@ -1,5 +1,11 @@ 2003-03-12 Carlos Garnacho Parro <garnacho@tuxerver.net> + * time-conf.in, boot-conf.in, users-conf.in, platform.in: + patch by Todd Kulesza <todd@dropline.net>, it adds support + for Slackware 8.1 in time-admin, boot-admin and users-admin. + +2003-03-12 Carlos Garnacho Parro <garnacho@tuxerver.net> + * network-conf.in: now stores fine both IPv4 and IPv6 addresses in the /etc/hosts file diff --git a/boot-conf.in b/boot-conf.in index f9ff7a1..5c892fa 100644 --- a/boot-conf.in +++ b/boot-conf.in @@ -68,7 +68,7 @@ $version = "___version___"; "suse-7.0", "turbolinux-7.0", - "slackware-9.0"); + "slackware-8.1", "slackware-9.0"); $description =<<"end_of_description;"; Configures Boot manager (LILO and GRUB at the moment). diff --git a/platform.pl.in b/platform.pl.in index b55cc22..adb9eac 100644 --- a/platform.pl.in +++ b/platform.pl.in @@ -56,6 +56,7 @@ $PLATFORM_INFO = { "suse-7.0" => "SuSE Linux 7.0", "turbolinux-7.0" => "Turbolinux 7.0", "slackware-8.0.0" => "Slackware 8.0.0", + "slackware-8.1" => "Slackware 8.1", "slackware-9.0" => "Slackware 9.0", "freebsd-4" => "FreeBSD 4", "freebsd-5" => "FreeBSD 5", diff --git a/time-conf.in b/time-conf.in index e1ce705..14be074 100755 --- a/time-conf.in +++ b/time-conf.in @@ -68,7 +68,7 @@ $version = "___version___"; "suse-7.0", "turbolinux-7.0", - "slackware-8.0.0", "slackware-9.0", + "slackware-8.0.0", "slackware-8.1", "slackware-9.0", "gentoo"); @@ -437,6 +437,7 @@ sub conf_get_parse_table "turbolinux-7.0" => "redhat-7.0", "slackware-8.0.0" => "debian-2.2", + "slackware-8.1" => "debian-2.2", "slackware-9.0" => "debian-2.2", "gentoo" => "redhat-7.0" diff --git a/users-conf.in b/users-conf.in index b2ee074..d1914e2 100644 --- a/users-conf.in +++ b/users-conf.in @@ -76,7 +76,7 @@ $version = "___version___"; "suse-7.0", "turbolinux-7.0", - "slackware-8.0.0", "slackware-9.0", + "slackware-8.0.0", "slackware-8.1", "slackware-9.0", "freebsd-4", "freebsd-5"); @@ -237,6 +237,7 @@ my $logindefs_dist_map = { 'suse-7.0' => $rh_logindefs_defaults, 'turbolinux-7.0' => $rh_logindefs_defaults, 'slackware-8.0.0' => $rh_logindefs_defaults, + 'slackware-8.1' => $rh_logindefs_defaults, 'slackware-9.0' => $rh_logindefs_defaults, 'freebsd-4' => $rh_logindefs_defaults, 'freebsd-5' => $rh_logindefs_defaults, |