This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function confirmRiskItemChained($taskList_html = null) { | |
| let taskList_url = 'personalManagement.do?action=listPersonalTask'; | |
| if (!$taskList_html) | |
| $taskList_page = $(document); | |
| else | |
| $taskList_page = $($taskList_html); | |
| if ($taskList_page.find('table#countTask1 tr td:nth-child(7) a').length == 0) | |
| console.log('finished'); | |
| $.each($taskList_page.find('table#countTask1 tr td:nth-child(7) a'), function(i, elem) { | |
| let task = $taskList_page.find('table#countTask1 tr td:nth-child(2)')[i].innerHTML.split(/\s+/).join(' '); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docker exec $PSQL_CONTAINER pg_dump -U netbox netbox > netbox.sql | |
| docker exec $NETBOX_CONTAINER tar czf - media > media.tgz |
OlderNewer