Last active
May 31, 2016 14:39
-
-
Save multani/d75235442d605e3e5c0001f0fad89544 to your computer and use it in GitHub Desktop.
Test case for https://github.com/saltstack/salt/issues/33504
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
locales locales/locales_to_be_generated multiselect fr_CH.UTF-8 UTF-8 |
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
FROM debian:jessie | |
RUN apt-get update && apt-get -y dist-upgrade && apt-get install -y wget | |
RUN wget http://bootstrap.saltstack.org/ -O /bootstrap-salt.sh | |
RUN chmod +x /bootstrap-salt.sh | |
RUN /bootstrap-salt.sh -M -N -X stable 2015.8.9 | |
ADD master.conf /etc/salt/master | |
RUN apt-get install debconf-utils | |
ADD debconf-locales-CH_FR /debconf-locales-CH_FR | |
RUN debconf-set-selections /debconf-locales-CH_FR | |
RUN apt-get install locales | |
# This fails | |
RUN LANG=fr_CH.UTF-8 salt-run -l debug fileserver.update |
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
fileserver_backend: | |
- git | |
gitfs_remotes: | |
- https://github.com/Ch3LL/states |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment