forked from sig_core/toolkit
add bugtracker manglers
This commit is contained in:
parent
5eee8d4c76
commit
2d6eeed6ae
5
mangle/bugs/generate_category_sql
Normal file
5
mangle/bugs/generate_category_sql
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
NAME="${1}"
|
||||||
|
PROJECT_ID="${2}"
|
||||||
|
|
||||||
|
printf "INSERT INTO mantis_category_table (project_id, user_id, name, status) VALUES('%s', '0', '%s', '0');\n" "${PROJECT_ID}" "${NAME}"
|
12
mangle/bugs/generate_category_sql_list
Normal file
12
mangle/bugs/generate_category_sql_list
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
LIST="${1}"
|
||||||
|
PROJECT_ID="${2}"
|
||||||
|
|
||||||
|
if [ ! -f "${LIST}" ]; then
|
||||||
|
echo "Not a file list"
|
||||||
|
exit 2
|
||||||
|
fi
|
||||||
|
|
||||||
|
while IFS= read -r line; do
|
||||||
|
printf "INSERT INTO mantis_category_table (project_id, user_id, name, status) VALUES('%s', '0', '%s', '0');\n" "${PROJECT_ID}" "${line}"
|
||||||
|
done < "${LIST}"
|
Loading…
Reference in New Issue
Block a user