]> git.llucax.com Git - mecon/scripts.git/commitdiff
Se vuelve a corregir el codep.
authorMatías Sklar <msklar@mecon.gov.ar>
Wed, 23 Jul 2003 18:46:11 +0000 (18:46 +0000)
committerMatías Sklar <msklar@mecon.gov.ar>
Wed, 23 Jul 2003 18:46:11 +0000 (18:46 +0000)
novedades/cargas/1.localhost/carga [deleted file]
novedades/cargas/1.localhost/scripts/20-codep [deleted file]
novedades/cargas/bal747f.mecon.ar/scripts/20-copiar-datos
novedades/cargas/intranet-db.mecon.ar/scripts/20-copiar-datos
novedades/cargas/intranet-db.mecon.ar/scripts/30-borrar-codep [moved from novedades/cargas/1.localhost/scripts/10-borrar-codep with 58% similarity]
novedades/cargas/intranet-db.mecon.ar/scripts/60-copiar_codep [new file with mode: 0755]

diff --git a/novedades/cargas/1.localhost/carga b/novedades/cargas/1.localhost/carga
deleted file mode 100755 (executable)
index 938b226..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-#
-# Script para cargar bases de datos.
-#
-# Creado por Leandro Lucarella (llucar) el mié ene 22 17:57:00 ART 2003
-#
-
-# Configuración.
-home="$1"
-datos="$2"
-host="intranet-db.mecon.ar"
-user="intranet"
-pass="intranet"
-db="CODEP"
-
-# Script.
-/bin/run-parts \
-    --lsbsysinit \
-    --verbose \
-    --arg="$host" \
-    --arg="$user" \
-    --arg="$pass" \
-    --arg="$db" \
-    --arg="$home" \
-    --arg="$datos" \
-    "$home/scripts"
diff --git a/novedades/cargas/1.localhost/scripts/20-codep b/novedades/cargas/1.localhost/scripts/20-codep
deleted file mode 100755 (executable)
index eb44976..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-host="$1"
-user="$2"
-pass="$3"
-db="$4"
-home="$5"
-datos="$6"
-
-cat <<EOT | mysql -h"$host" -u"$user" -p"$pass" "$db"
-SELECT
-    codigo_actual, nombre_breve
-INTO OUTFILE
-    '$datos/codep'
-FIELDS TERMINATED BY
-    ','
-LINES TERMINATED BY
-    '\n'
-FROM
-    Dependencias
-WHERE
-    dependencia_esta_activa = 1;
-EOT
index 3255b354ff9ccd647caa1d681c78df8a5110e1e7..f48eaa768def52f527058b6dfbb64646135d7b75 100755 (executable)
@@ -6,6 +6,6 @@ db="$4"
 home="$5"
 datos="$6"
 
-scp -1 -vr "$datos"/* novedades@"$host":"$datos"
+scp -1 -r "$datos"/* novedades@"$host":"$datos"
 ssh -1 -n novedades@"$host" chmod -v  775 "$datos"
 ssh -1 -n novedades@"$host" chmod -vR 664 "$datos"/*
index 3255b354ff9ccd647caa1d681c78df8a5110e1e7..f48eaa768def52f527058b6dfbb64646135d7b75 100755 (executable)
@@ -6,6 +6,6 @@ db="$4"
 home="$5"
 datos="$6"
 
-scp -1 -vr "$datos"/* novedades@"$host":"$datos"
+scp -1 -r "$datos"/* novedades@"$host":"$datos"
 ssh -1 -n novedades@"$host" chmod -v  775 "$datos"
 ssh -1 -n novedades@"$host" chmod -vR 664 "$datos"/*
similarity index 58%
rename from novedades/cargas/1.localhost/scripts/10-borrar-codep
rename to novedades/cargas/intranet-db.mecon.ar/scripts/30-borrar-codep
index affbf9956dc764ea149a5ec59d00de6f79b9c505..a769a6546ff2512b1a21c13c6197e31480cbe607 100755 (executable)
@@ -6,4 +6,4 @@ db="$4"
 home="$5"
 datos="$6"
 
-rm -vf "$datos"/codep
+ssh -1 -n novedades@"$host" rm -vf "$datos"/codep
diff --git a/novedades/cargas/intranet-db.mecon.ar/scripts/60-copiar_codep b/novedades/cargas/intranet-db.mecon.ar/scripts/60-copiar_codep
new file mode 100755 (executable)
index 0000000..4150b8a
--- /dev/null
@@ -0,0 +1,9 @@
+#!/bin/sh
+host="$1"
+user="$2"
+pass="$3"
+db="$4"
+home="$5"
+datos="$6"
+
+scp -1 -r novedades@"$host":"$datos"/codep "$datos"