aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/tld_redirections/manifests/init.pp
blob: f1808eb12a3ea57504d9e38708904c592f11c836 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class tld_redirections {
    define redirection {
        apache::vhost_redirect { "mageia.$name":
            url => "http://www.mageia.org/?fromtld=$name"
        }
        apache::vhost_redirect { "www.mageia.$name":
            url => "http://www.mageia.org/?fromtld=$name"
        }
    }

    # domaine owned by Florin Catalin Russen
    redirection { "ro": }
}