Compare commits

...
This repository has been archived on 2024-09-06. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.

18 commits

Author SHA1 Message Date
77cc7fcf2a Add missing packages 2020-11-12 13:11:17 +01:00
a235cfa3fa Add apt-listchanges packages 2020-10-26 16:08:11 +01:00
a19b196010 Add exfat and ntfs support 2020-10-26 15:42:40 +01:00
525cba5906 Add trailing slash for FI URL 2018-05-03 14:41:23 +02:00
9287d6470b Add fusioninventory confiuration 2018-05-03 14:40:18 +02:00
e18102d5ae Various fixes 2018-05-03 13:11:16 +02:00
9686cc6f11 Merge branch 'master' into acaqb 2018-05-02 11:31:20 +02:00
ef7570cd47 Syntax error in apt pin file 2018-05-02 11:16:23 +02:00
2687387c42 master merge 2018-05-02 11:10:53 +02:00
8b3483e411 Merge branch 'master' into acaqb 2018-05-02 10:47:40 +02:00
e36c0867c7 Error in release name 2018-05-02 10:47:12 +02:00
886a17fd89 Copy missing files for repo managing 2018-05-02 10:46:20 +02:00
21c5700337 Error in variable name configure_plymouth 2018-05-02 10:42:05 +02:00
54712eea8b Add remmina and remmina-plugin-rdp package 2018-05-02 10:38:22 +02:00
5c6608d420 Merge branch 'master' into acaqb 2018-05-02 10:34:03 +02:00
ace138d377 Copy backport source list 2018-05-02 10:33:39 +02:00
5db8d69cde Add configuration file for fusioninventory 2018-05-02 10:28:44 +02:00
57262fc556 Configure Backport for Libreoffice and Remmina 2018-05-02 10:24:05 +02:00
5 changed files with 25 additions and 6 deletions

View file

@ -0,0 +1,4 @@
FI_SERVER="https://agent.dg.acaqb.net/"
FI_PROXY_USER="agent"
FI_PROXY_PASS="kE9TDtP63xwK"
FI_CONF_FILE="/etc/fusioninventory/agent.cfg"

View file

@ -1,3 +1,3 @@
Package: libreoffice libreoffice-gtk3 libreoffice-l10n-fr Package: ~/libreoffice/
Pin: release n=stretch-backports Pin: release n=stretch-backports
Pin-Priority: 991 Pin-Priority: 991

View file

@ -1,3 +1,3 @@
Package: remmina remmina-plugin-rdp Package: remmina remmina-plugin-rdp
in: release n=stretch-backports Pin: release n=stretch-backports
Pin-Priority: 991 Pin-Priority: 991

View file

@ -3,6 +3,13 @@
pulseaudio pulseaudio
unzip unzip
unattended-upgrades unattended-upgrades
apt-listchanges
exfat-utils
exfat-fuse
ntfs-3g
firmware-linux
firmware-linux-nonfree
firmware-realtek
# Desktop # Desktop
xorg xorg
@ -21,6 +28,7 @@ xfce4-systemload-plugin
thunar-archive-plugin thunar-archive-plugin
gnome-system-tools gnome-system-tools
gnome-disk-utility gnome-disk-utility
gnome-keyring
plank plank
#Printing #Printing
@ -53,6 +61,9 @@ thunderbird
thunderbird-l10n-fr thunderbird-l10n-fr
vlc vlc
vlc-l10n vlc-l10n
remmina
remmina-plugin-rdp
xarchiver
#FI Agent #FI Agent
fusioninventory-agent fusioninventory-agent

View file

@ -84,20 +84,20 @@ create_fusioninv_conf () {
configure_drm(){ configure_drm(){
if [ -z "$(grep -o drm $INITRAMFS_CONF_FILE)" ] if [ -z "$(grep -o drm $INITRAMFS_CONF_FILE)" ]
then then
cat "drm" >> $INITRAMFS_CONF_FILE echo "drm" >> $INITRAMFS_CONF_FILE
else else
message "DRM already done " "warn" message "DRM already done " "warn"
fi fi
if [ -z "$(grep -o $1 $INITRAMFS_CONF_FILE)" ] if [ -z "$(grep -o $1 $INITRAMFS_CONF_FILE)" ]
then then
cat "$1 modeset=1" >> $INITRAMFS_CONF_FILE echo "$1 modeset=1" >> $INITRAMFS_CONF_FILE
else else
message "$1 already done " "warn" message "$1 already done " "warn"
fi fi
} }
configure_grub (){ configure_grub (){
sed -E "s/^GRUB_CMDLINE_LINUX_DEFAULT=\"(.*)\"/GRUB_CMDLINE_LINUX_DEFAULT=\"\1 spash\"/g" ${GRUB_DEFAULT_CONF_FILE} >/dev/null sed -Ei "s/^GRUB_CMDLINE_LINUX_DEFAULT=\"(.*)\"/GRUB_CMDLINE_LINUX_DEFAULT=\"\1 splash\"/g" ${GRUB_DEFAULT_CONF_FILE} >/dev/null
update-grub2 2>/dev/null update-grub2 2>/dev/null
} }
@ -154,6 +154,10 @@ message "\nCreate users default parameters : "
cp -R files/skel/ /etc/ &> /dev/null cp -R files/skel/ /etc/ &> /dev/null
message "OK" "ok" message "OK" "ok"
message "\nConfigure fusioninventory"
create_fusioninv_conf
message "OK" "ok"
#remove interface file until NM use network #remove interface file until NM use network
rm -rf /etc/network/interfaces rm -rf /etc/network/interfaces