Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MITIK-MGMT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Wireless Passive Measurements
Collection management
MITIK-MGMT
Commits
711b3463
Commit
711b3463
authored
5 months ago
by
Autodistries
Browse files
Options
Downloads
Patches
Plain Diff
restore custom net drivers
parent
7fc18827
No related branches found
No related tags found
1 merge request
!1
Refactoring, new features
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
files/positionGetter.sh
+30
-0
30 additions, 0 deletions
files/positionGetter.sh
playbooks/device_setup.yml
+1
-1
1 addition, 1 deletion
playbooks/device_setup.yml
playbooks/microtask_network_drivers_update.yml
+1
-1
1 addition, 1 deletion
playbooks/microtask_network_drivers_update.yml
with
32 additions
and
2 deletions
files/positionGetter.sh
0 → 100755
+
30
−
0
View file @
711b3463
#!/bin/bash
# run with arg 1 the sleep TO, and $2 the waiting time before doing things
if
[
$2
]
;
then
sleep
$2
fi
rm
~/locations.log
while
echo
$(
pgrep
-a
"sniffer.py"
>
/dev/null
;
echo
$?
)
;
do
data
=
$(
gpspipe
--nmea
-n
10 |
awk
-F
,
'$1 == "$GPGGA"'
|
awk
-F
,
'{print $3, $5, $10}'
)
# $GPGGA,124226.00,4842.8648,N,00212.3549,E,1,07,1.30,160.28,M,46.512,M,,*63
# │ Latitude: 48.71441340 N │
# │ Longitude: 2.20591520 E │
# │ Alt (HAE, MSL): 206.490, 160.283 m
echo
$data
>>
~/locations.log
if
[
$1
]
;
then
sleep
$1
else
sleep
900
#15m
fi
done
if
[
$(
ls
~/locations.log
;
echo
$?
)
]
;
do
# faut moyenner toutes les potitions imo
done
\ No newline at end of file
This diff is collapsed.
Click to expand it.
playbooks/device_setup.yml
+
1
−
1
View file @
711b3463
...
...
@@ -11,7 +11,7 @@
#
- import_playbook: ./microtask_network_drivers_update.yml
-
import_playbook
:
./microtask_network_drivers_update.yml
-
import_playbook
:
./microtask_networking_naming_scheme_udev_setup.yml
-
import_playbook
:
./microtask_networkmanager_un_manager_setup.yml
...
...
This diff is collapsed.
Click to expand it.
playbooks/microtask_network_drivers_update.yml
+
1
−
1
View file @
711b3463
...
...
@@ -16,7 +16,7 @@
-
name
:
Clone or update rtl8188eus repository if necessary
ansible.builtin.git
:
repo
:
https://github.com/
aircrack-ng
/rtl8188eus/
repo
:
https://github.com/
gglluukk
/rtl8188eus/
dest
:
./rtl8188eus
update
:
true
clone
:
true
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment