]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/commitdiff
Fix aur url
authorIsmaël Bouya <ismael.bouya@normalesup.org>
Sat, 28 Apr 2018 15:26:39 +0000 (17:26 +0200)
committerIsmaël Bouya <ismael.bouya@normalesup.org>
Sat, 28 Apr 2018 15:26:39 +0000 (17:26 +0200)
modules/aur/manifests/aura.pp

index 3e06f0a18289287924c713a775c67d0ae0816882..3074885a9f42d2c0bc36be6e137ea5992c38268a 100644 (file)
@@ -13,10 +13,14 @@ class aur::aura(
   ensure_packages(['base-devel'], { 'install_options'  => '--needed' })
   ensure_packages(['gmp', 'pcre'], { 'install_options' => '--asdeps' })
 
+  # aur.sh seems down
+  #$aur_url = "https://aur.sh"
+  $aur_url = "https://raw.githubusercontent.com/stuartpb/aur.sh/dc2f3fcaa90a4d3d1e8d746160559b5d3123a425/aur.sh"
+
   exec { 'aur::aura':
     cwd       => "/tmp",
     path      => "/usr/bin",
-    command   => 'curl -o /tmp/aur.sh aur.sh && chmod +x /tmp/aur.sh && /tmp/aur.sh aura-bin && mv /tmp/aura-bin/aura-bin-*-x86_64.pkg.tar.xz /tmp/aura-bin-x86_64.pkg.tar.xz && rm /tmp/aur.sh && rm -rf /tmp/aura-bin',
+    command   => "curl -o /tmp/aur.sh $aur_url && chmod +x /tmp/aur.sh && /tmp/aur.sh aura-bin && mv /tmp/aura-bin/aura-bin-*-x86_64.pkg.tar.xz /tmp/aura-bin-x86_64.pkg.tar.xz && rm /tmp/aur.sh && rm -rf /tmp/aura-bin",
     user      => "aur-builder",
     unless    => '/usr/bin/pacman -Qo aura',
     require   => Package['base-devel'],